Archeus 0.0.0
A C library and game engine that focuses on documentation
Loading...
Searching...
No Matches
bool.h
Go to the documentation of this file.
1#ifndef ARC_STD_BOOL_H_
2#define ARC_STD_BOOL_H_
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include <stdbool.h>
9
10#define ARC_Bool bool
11#define ARC_True true
12#define ARC_False false
13
14#ifdef __cplusplus
15}
16#endif
17
18#endif //ARC_STD_BOOL_H_