Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
stdbool.h
Go to the documentation of this file.
1 #ifndef __STDBOOL_H_
2 #define __STDBOOL_H_
3 
4 #ifndef __cplusplus
5 
6 /*
7  * Only defined for C, since C++ has its own bool support
8  * */
9 
11 #define true 1
12 
14 #define false 0
15 
17 typedef _Bool bool;
18 
19 #endif
20 
21 #endif //__STDBOOL_H_
_Bool bool
Definition: stdbool.h:17