18 lines
235 B
C
18 lines
235 B
C
|
|
#ifndef ARC_STD_BOOL_H_
|
||
|
|
#define ARC_STD_BOOL_H_
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include <stdbool.h>
|
||
|
|
|
||
|
|
#define ARC_Bool bool
|
||
|
|
#define ARC_True true
|
||
|
|
#define ARC_False false
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif //ARC_STD_BOOL_H_
|