add cJSON_Utils which includes JSON Pointer implementation

git-svn-id: svn://svn.code.sf.net/p/cjson/code@63 e3330c51-1366-4df0-8b21-3ccf24e3d50e
This commit is contained in:
Dave Gamble
2015-02-09 18:29:05 +00:00
parent 2abfb716d1
commit c0f5e2056b
3 changed files with 78 additions and 0 deletions

5
cJSON_Utils.h Normal file
View File

@ -0,0 +1,5 @@
#include "cJSON.h"
// Implement RFC6901 (https://tools.ietf.org/html/rfc6901) JSON Pointer spec.
cJSON *cJSONUtils_GetPointer(cJSON *object,const char *pointer);