| 1984 | return c; |
| 1985 | } |
| 1986 | cJSON *cJSON_DetachItemFromArray(cJSON *array, int which) |
| 1987 | { |
| 1988 | if (which < 0) |
| 1989 | { |
| 1990 | return NULL; |
| 1991 | } |
| 1992 | |
| 1993 | return DetachItemFromArray(array, (size_t)which); |
| 1994 | } |
| 1995 | |
| 1996 | void cJSON_DeleteItemFromArray(cJSON *array, int which) |
| 1997 | { |
no test coverage detected