| 2302 | } |
| 2303 | |
| 2304 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2305 | { |
| 2306 | cJSON_Delete(cJSON_DetachItemFromArray(array, which)); |
| 2307 | } |
| 2308 | |
| 2309 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2310 | { |
nothing calls this directly
no test coverage detected