int32_t Heap_Free(void *pointer)
Free memory.
void * Heap_Malloc(int32_t desiredBytes)
Allocate memory.
void * Heap_Calloc(int32_t desiredBytes)
Zero-allocate memory.
int32_t Heap_Init(void)
Initializes/resets the heap to a clean state where no memory is allocated.
int32_t Heap_Stats(heap_stats_t *stats)
Get heap usage.
void * Heap_Realloc(void *oldBlock, int32_t desiredBytes)
Grow/shrink memory.