| 740 | return 0; |
| 741 | } |
| 742 | void cJSON_DeleteItemFromObject(cJSON *object, const char *string) { |
| 743 | cJSON_Delete(cJSON_DetachItemFromObject(object, string)); |
| 744 | } |
| 745 | |
| 746 | /* Replace array/object items with new ones. */ |
| 747 | void cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem) { |
no test coverage detected