multi_heap_realloc() function
realloc() a buffer in a given heap. Semantics are the same as standard realloc(), only the argument 'p' must be NULL or have been allocated in the specified heap.
Arguments
heap
Handle to a registered heap.
p
NULL, or a pointer previously returned from multi_heap_malloc() or multi_heap_realloc() for the same heap.
size
Desired new size for buffer.
Return value
New buffer of 'size' containing contents of 'p', or NULL if reallocation failed.