| 1994 | } |
| 1995 | |
| 1996 | void cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 1997 | { |
| 1998 | cJSON_Delete(cJSON_DetachItemFromArray(array, which)); |
| 1999 | } |
| 2000 | |
| 2001 | cJSON *cJSON_DetachItemFromObject(cJSON *object, const char *string) |
| 2002 | { |
nothing calls this directly
no test coverage detected