| 2249 | } |
| 2250 | |
| 2251 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2252 | { |
| 2253 | cJSON_Delete(cJSON_DetachItemFromArray(array, which)); |
| 2254 | } |
| 2255 | |
| 2256 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2257 | { |
nothing calls this directly
no test coverage detected