These docs are for v1.3.0. Click to read the latest docs for v1.6.

Memory

Defines common memory functions.

SUMMARY

MembersDescriptions
public void * malloc(size_t size)Allocate additional memory.
public void * calloc(size_t count,size_t size)Allocate a block of memory for an array of count elements, each of them size bytes long, and initializes all bits with 0.
public void * realloc(void * ptr,size_t size)Reallocate the given area of memory.
public void free(void * ptr)Deallocates the given area of memory.