| 2227 | } |
| 2228 | |
| 2229 | CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 2230 | { |
| 2231 | cJSON_Delete(cJSON_DetachItemFromArray(array, which)); |
| 2232 | } |
| 2233 | |
| 2234 | CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2235 | { |
nothing calls this directly
no test coverage detected