18 lines
164 B
C
18 lines
164 B
C
// memoryFree header
|
|
|
|
#ifndef MEMORY_FREE_H
|
|
#define MEMORY_FREE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int freeMemory();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|