pub unsafe extern "C" fn multi_heap_aligned_free(
    heap: multi_heap_handle_t,
    p: *mut c_void
)
Expand description

@brief free() a buffer aligned in a given heap.

@param heap Handle to a registered heap. @param p NULL, or a pointer previously returned from multi_heap_aligned_alloc() for the same heap. @note This function is deprecated, consider using multi_heap_free() instead