heap_caps_realloc_prefer() function
Reallocate a chunk of memory as preference in decreasing order.
Syntax
void *heap_caps_realloc_prefer( void *ptr,
size_t size,
size_t num, ... );
Arguments
ptr
Pointer to previously allocated memory, or NULL for a new allocation.
size
Size of the new buffer requested, or 0 to free the buffer.
num
Number of variable parameters
Return value
Pointer to a new buffer of size 'size', or NULL if allocation failed.