| 914 | return c; |
| 915 | } |
| 916 | void cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 917 | { |
| 918 | cJSON_Delete(cJSON_DetachItemFromArray(array, which)); |
| 919 | } |
| 920 | cJSON *cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 921 | { |
| 922 | int i = 0; |
no test coverage detected