15 lines
174 B
C
15 lines
174 B
C
/*
|
|
* MemoryFree header
|
|
*/
|
|
#ifndef MEMORY_FREE_H
|
|
#define MEMORY_FREE_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
int freeMemory();
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|