| 920 | return c; |
| 921 | } |
| 922 | void cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 923 | { |
| 924 | cJSON_Delete(cJSON_DetachItemFromArray(array, which)); |
| 925 | } |
| 926 | cJSON *cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 927 | { |
| 928 | int i = 0; |
no test coverage detected