mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
Add cJSONUtils_GetPointerCaseSensitive
This commit is contained in:
@@ -299,6 +299,11 @@ CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointer(cJSON * const object, const char *po
|
||||
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. */
|
||||
static void decode_pointer_inplace(unsigned char *string)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user