| 346 | } |
| 347 | |
| 348 | CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointer(cJSON * const object, const char *pointer) |
| 349 | { |
| 350 | return get_item_from_pointer(object, pointer, false); |
| 351 | } |
| 352 | |
| 353 | CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointerCaseSensitive(cJSON * const object, const char *pointer) |
| 354 | { |
searching dependent graphs…