diff options
| author | Christian Cunningham <cc@local.lan> | 2025-03-04 19:10:07 -0800 |
|---|---|---|
| committer | Christian Cunningham <cc@local.lan> | 2025-03-04 19:10:07 -0800 |
| commit | 8e719bf59a78559b5128cefa0479c71245cbdcb2 (patch) | |
| tree | 9f589bd8c0fa0823fe04da0753004386f0968844 /include/lib/bool.h | |
| parent | 3e1246d3da2bfdee08f92b35677f991622e43768 (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 |
