123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef _STDBOOL_H
- #define _STDBOOL_H
- #ifndef __cplusplus
- #define bool _Bool
- #define true 1
- #define false 0
- #else
- #define _Bool bool
- #if __cplusplus < 201103L
- #define bool bool
- #define false false
- #define true true
- #endif
- #endif
- #define __bool_true_false_are_defined 1
- #endif
|