MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / sds_realloc

Function sds_realloc

src/sds.c:1207–1207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1205 * even if they use a different allocator. */
1206void *sds_malloc(size_t size) { return s_malloc(size, MALLOC_SHARED); }
1207void *sds_realloc(void *ptr, size_t size) { return s_realloc(ptr,size, MALLOC_SHARED); }
1208void sds_free(void *ptr) { s_free(ptr); }
1209
1210/* 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