6 lines
164 B
C
6 lines
164 B
C
#include "cJSON.h"
|
|
|
|
// Implement RFC6901 (https://tools.ietf.org/html/rfc6901) JSON Pointer spec.
|
|
cJSON *cJSONUtils_GetPointer(cJSON *object,const char *pointer);
|
|
|