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

Function sds_free

sds.c:1124–1124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1122void *sds_malloc(size_t size) { return s_malloc(size); }
1123void *sds_realloc(void *ptr, size_t size) { return s_realloc(ptr,size); }
1124void sds_free(void *ptr) { s_free(ptr); }
1125
1126#if defined(SDS_TEST_MAIN)
1127#include <stdio.h>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected