| 357 | } |
| 358 | |
| 359 | CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointerCaseSensitive(cJSON *const object, const char *pointer) |
| 360 | { |
| 361 | return get_item_from_pointer(object, pointer, true); |
| 362 | } |
| 363 | |
| 364 | /* JSON Patch implementation. */ |
| 365 | static void decode_pointer_inplace(unsigned char *string) |
nothing calls this directly
no test coverage detected