| 2109 | } |
| 2110 | |
| 2111 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2112 | { |
| 2113 | cJSON_Delete(cJSON_DetachItemFromArray(array, which)); |
| 2114 | } |
| 2115 | |
| 2116 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2117 | { |
no test coverage detected