MCPcopy Create free account
hub / github.com/F-Stack/f-stack / sds_realloc

Function sds_realloc

app/redis-6.2.6/src/sds.c:1165–1165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1163 * even if they use a different allocator. */
1164void *sds_malloc(size_t size) { return s_malloc(size); }
1165void *sds_realloc(void *ptr, size_t size) { return s_realloc(ptr,size); }
1166void sds_free(void *ptr) { s_free(ptr); }
1167
1168/* Perform expansion of a template string and return the result as a newly

Callers 1

noninteractiveFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected