diff options
author | Christian C <cc@localhost> | 2025-03-04 19:10:07 -0800 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-03-04 19:10:07 -0800 |
commit | c61bb864c026d26a393f2a09c82de9bbc5043c6f (patch) | |
tree | 9f589bd8c0fa0823fe04da0753004386f0968844 /include/lib/bool.h | |
parent | 49412195efd93573eb96ddbae6e41099964fdb65 (diff) |
Modularization
Diffstat (limited to 'include/lib/bool.h')
-rw-r--r-- | include/lib/bool.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/lib/bool.h b/include/lib/bool.h new file mode 100644 index 0000000..6bf4c40 --- /dev/null +++ b/include/lib/bool.h @@ -0,0 +1,8 @@ +#ifndef INC_LIB_BOOL_H +#define INC_LIB_BOOL_H + +#define bool_t uint8_t +#define FALSE 0 +#define TRUE 1 + +#endif |