| 2254 | } |
| 2255 | |
| 2256 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2257 | { |
| 2258 | cJSON *to_detach = cJSON_GetObjectItem(object, string); |
| 2259 | |
| 2260 | return cJSON_DetachItemViaPointer(object, to_detach); |
| 2261 | } |
| 2262 | |
| 2263 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2264 | { |
no test coverage detected