| 2114 | } |
| 2115 | |
| 2116 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2117 | { |
| 2118 | cJSON *to_detach = cJSON_GetObjectItem(object, string); |
| 2119 | |
| 2120 | return cJSON_DetachItemViaPointer(object, to_detach); |
| 2121 | } |
| 2122 | |
| 2123 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2124 | { |
no test coverage detected