| 2307 | } |
| 2308 | |
| 2309 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2310 | { |
| 2311 | cJSON *to_detach = cJSON_GetObjectItem(object, string); |
| 2312 | |
| 2313 | return cJSON_DetachItemViaPointer(object, to_detach); |
| 2314 | } |
| 2315 | |
| 2316 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2317 | { |
no test coverage detected