| 2246 | } |
| 2247 | |
| 2248 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string) |
| 2249 | { |
| 2250 | cJSON_Delete(cJSON_DetachItemFromObject(object, string)); |
| 2251 | } |
| 2252 | |
| 2253 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2254 | { |
nothing calls this directly
no test coverage detected