| 934 | return 0; |
| 935 | } |
| 936 | void cJSON_DeleteItemFromObject(cJSON *object, const char *string) |
| 937 | { |
| 938 | cJSON_Delete(cJSON_DetachItemFromObject(object, string)); |
| 939 | } |
| 940 | |
| 941 | /* Replace array/object items with new ones. */ |
| 942 | void cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem) |
no test coverage detected