| 2326 | } |
| 2327 | |
| 2328 | CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string) |
| 2329 | { |
| 2330 | cJSON_Delete(cJSON_DetachItemFromObjectCaseSensitive(object, string)); |
| 2331 | } |
| 2332 | |
| 2333 | /* Replace array/object items with new ones. */ |
| 2334 | CJSON_PUBLIC(cJSON_bool) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem) |
nothing calls this directly
no test coverage detected