| 2232 | } |
| 2233 | |
| 2234 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2235 | { |
| 2236 | cJSON *to_detach = cJSON_GetObjectItem(object, string); |
| 2237 | |
| 2238 | return cJSON_DetachItemViaPointer(object, to_detach); |
| 2239 | } |
| 2240 | |
| 2241 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2242 | { |
no test coverage detected