|
@@ -299,6 +299,11 @@ CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointer(cJSON * const object, const char *po
|
|
return get_item_from_pointer(object, pointer, false);
|
|
return get_item_from_pointer(object, pointer, false);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointerCaseSensitive(cJSON * const object, const char *pointer)
|
|
|
|
+{
|
|
|
|
+ return get_item_from_pointer(object, pointer, true);
|
|
|
|
+}
|
|
|
|
+
|
|
/* JSON Patch implementation. */
|
|
/* JSON Patch implementation. */
|
|
static void decode_pointer_inplace(unsigned char *string)
|
|
static void decode_pointer_inplace(unsigned char *string)
|
|
{
|
|
{
|