| 2321 | } |
| 2322 | |
| 2323 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string) |
| 2324 | { |
| 2325 | cJSON_Delete(cJSON_DetachItemFromObject(object, string)); |
| 2326 | } |
| 2327 | |
| 2328 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2329 | { |
nothing calls this directly
no test coverage detected