ae2f_docs
Loading...
Searching...
No Matches
StdBool.h
Go to the documentation of this file.
1/**
2 * @file StdBool.h
3 * */
4
5#ifndef ae2f_stdbool_h
6#define ae2f_stdbool_h
7
8
9#if defined(__STDC_VERSION__) && (__STDC_VERSION__)
10#include <stdbool.h>
11#elif defined(__cplusplus)
12#else
13
14#ifndef _Bool
15#define _Bool unsigned
16#endif
17
18#ifndef bool
19#define bool _Bool
20#endif
21
22#ifndef true
23#define true 1
24#endif
25
26#ifndef false
27#define false 0
28#endif
29
30#endif
31#endif
#define __ae2f_lvcheck_c(v)