| 2136 | } |
| 2137 | |
| 2138 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string) |
| 2139 | { |
| 2140 | cJSON_Delete(cJSON_DetachItemFromObject(object, string)); |
| 2141 | } |
| 2142 | |
| 2143 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2144 | { |
nothing calls this directly
no test coverage detected