| 352 | } |
| 353 | |
| 354 | CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointer(cJSON *const object, const char *pointer) |
| 355 | { |
| 356 | return get_item_from_pointer(object, pointer, false); |
| 357 | } |
| 358 | |
| 359 | CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointerCaseSensitive(cJSON *const object, const char *pointer) |
| 360 | { |
nothing calls this directly
no test coverage detected