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