image/svg+xml
Brteve's API for EveApps
Version 0.0.1
The reference document for common folder of EveApps project.
 
Loading...
Searching...
No Matches
ffsystem.c File Reference
#include "ff.h"

Go to the source code of this file.

Functions

void * ff_memalloc (UINT msize)
 
void ff_memfree (void *mblock)
 

Function Documentation

◆ ff_memalloc()

void * ff_memalloc ( UINT  msize)

Definition at line 16 of file ffsystem.c.

19{
20 return malloc(msize); /* Allocate a new memory block with POSIX API */
21}

◆ ff_memfree()

void ff_memfree ( void *  mblock)

Definition at line 28 of file ffsystem.c.

31{
32 free(mblock); /* Free the memory block with POSIX API */
33}