| 2299 | } |
| 2300 | |
| 2301 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2302 | { |
| 2303 | cJSON *to_detach = cJSON_GetObjectItemCaseSensitive(object, string); |
| 2304 | |
| 2305 | return cJSON_DetachItemViaPointer(object, to_detach); |
| 2306 | } |
| 2307 | |
| 2308 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string) |
| 2309 | { |
searching dependent graphs…