char * c_strdup(const char *str)
Duplicate a string.
void * c_malloc(size_t size)
Allocates memory for an array.
void * c_realloc(void *ptr, size_t size)
Changes the size of the memory block pointed to.
cynapses libc macro definitions
void * c_calloc(size_t count, size_t size)
Allocates memory for an array.
char * c_strndup(const char *str, size_t size)
Duplicate a string.