| 2273 | } |
| 2274 | |
| 2275 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2276 | { |
| 2277 | cJSON_Delete(cJSON_DetachItemFromObjectCaseSensitive(object, string)); |
| 2278 | } |
| 2279 | |
| 2280 | /* Replace array/object items with new ones. */ |
| 2281 | CJSON_PUBLIC(cJSON_bool) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem) |
no test coverage detected