| 2268 | } |
| 2269 | |
| 2270 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string) |
| 2271 | { |
| 2272 | cJSON_Delete(cJSON_DetachItemFromObject(object, string)); |
| 2273 | } |
| 2274 | |
| 2275 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2276 | { |
no test coverage detected