12 lines
198 B
C
12 lines
198 B
C
#ifndef STD_BOOL_H
|
|
#define STD_BOOL_H
|
|
|
|
#ifdef __cplusplus
|
|
#else
|
|
typedef unsigned char bool;
|
|
#define true 1
|
|
#define false 0
|
|
#endif
|
|
|
|
#endif
|
|
|