| 732 | return c; |
| 733 | } |
| 734 | void cJSON_DeleteItemFromArray(cJSON *array, int which) { cJSON_Delete(cJSON_DetachItemFromArray(array, which)); } |
| 735 | cJSON *cJSON_DetachItemFromObject(cJSON *object, const char *string) { |
| 736 | int i = 0; |
| 737 | cJSON *c = object->child; |
no test coverage detected