| 2253 | } |
| 2254 | |
| 2255 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string) |
| 2256 | { |
| 2257 | cJSON_Delete(cJSON_DetachItemFromObject(object, string)); |
| 2258 | } |
| 2259 | |
| 2260 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2261 | { |
nothing calls this directly
no test coverage detected