Phasor 2.2.0
Stack VM based Programming Language
Loading...
Searching...
No Matches
system.h
Go to the documentation of this file.
1#ifndef CORE_SYSTEM_H
2#define CORE_SYSTEM_H
3
4#if defined(_WIN32)
5#include <windows.h>
6#elif defined(__APPLE__)
7#include <mach/mach.h>
8#else
9#include <unistd.h>
10#endif
11
12#ifdef __cplusplus
13extern "C"
14{
15#endif
16 size_t getAvailableMemory();
17#ifdef __cplusplus
18}
19#endif
20#endif // CORE_SYSTEM_H
size_t getAvailableMemory()
Definition system.c:3