MCPcopy Create free account
hub / github.com/antirez/botlib / internal_free

Function internal_free

cJSON.c:169–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167 return malloc(size);
168}
169static void CJSON_CDECL internal_free(void *pointer)
170{
171 free(pointer);
172}
173static void * CJSON_CDECL internal_realloc(void *pointer, size_t size)
174{
175 return realloc(pointer, size);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected