| 928 | return 0; |
| 929 | } |
| 930 | void cJSON_DeleteItemFromObject(cJSON *object, const char *string) |
| 931 | { |
| 932 | cJSON_Delete(cJSON_DetachItemFromObject(object, string)); |
| 933 | } |
| 934 | |
| 935 | /* Replace array/object items with new ones. */ |
| 936 | void cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem) |
no test coverage detected