MCPcopy Create free account
hub / github.com/Tencent/Hardcoder / internal_free

Function internal_free

libapp2sys/src/main/cpp/cjson/cJSON.c:134–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132 return malloc(size);
133}
134static void CJSON_CDECL internal_free(void *pointer)
135{
136 free(pointer);
137}
138static void * CJSON_CDECL internal_realloc(void *pointer, size_t size)
139{
140 return realloc(pointer, size);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected