ff_memfree

The ff_memfree function is an equivalent or an alias of POSIX free function.

void ff_memfree (
  void* mblock           /* [IN] Pointer to the memory block */
);

Parameter

mblock
Pointer to the valid memory block allocated by ff_memalloc function. A null pointer has no effect.

QuickInfo

This function is required when FF_USE_LFN = 3. It is intended to be used by FatFs but also application program may use this function.

Return