| 2237 | } |
| 2238 | |
| 2239 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2240 | { |
| 2241 | cJSON_Delete(cJSON_DetachItemFromArray(array, which)); |
| 2242 | } |
| 2243 | |
| 2244 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2245 | { |
nothing calls this directly
no test coverage detected