| 351 | } |
| 352 | |
| 353 | CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointerCaseSensitive(cJSON * const object, const char *pointer) |
| 354 | { |
| 355 | return get_item_from_pointer(object, pointer, true); |
| 356 | } |
| 357 | |
| 358 | /* JSON Patch implementation. */ |
| 359 | static void decode_pointer_inplace(unsigned char *string) |
searching dependent graphs…