heap_caps_get_allocated_size() function
Return the size that a particular pointer was allocated with.
Syntax
size_t heap_caps_get_allocated_size( void *ptr ); Arguments
ptr
Pointer to currently allocated heap memory. Must be a pointer value previously returned by heap_caps_malloc, malloc, calloc, etc. and not yet freed.
Return value
Size of the memory allocated at this block.
Notes
The app will crash with an assertion failure if the pointer is not valid.