diff options
Diffstat (limited to 'shared/bool.h')
-rw-r--r-- | shared/bool.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shared/bool.h b/shared/bool.h new file mode 100644 index 0000000..9ea97f7 --- /dev/null +++ b/shared/bool.h @@ -0,0 +1,9 @@ +#pragma once + +#include <stdint.h> + +/** @file bool.h */ + +typedef uint8_t bool; +#define false 0 /* NOLINT */ +#define true 1 /* NOLINT */ |