MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / cJSON_DetachItemFromArray

Function cJSON_DetachItemFromArray

lib/cJSON.c:1986–1994  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1984 return c;
1985}
1986cJSON *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
1996void cJSON_DeleteItemFromArray(cJSON *array, int which)
1997{

Callers 1

Calls 1

DetachItemFromArrayFunction · 0.85

Tested by

no test coverage detected