summaryrefslogtreecommitdiff
path: root/shared/bool.h
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-05-27 11:40:05 +0200
committerlonkaars <loek@pipeframe.xyz>2022-05-27 11:40:05 +0200
commit3bbe41a04b6053a3a3a902384850cfcbd38b0686 (patch)
tree1385ae4d9ee438a888e1abf4e4e6ac1d6e1801f5 /shared/bool.h
parentbfa494588da0def96c42577e284c6d8990eb31f2 (diff)
move things around and add todo's to robot readme
Diffstat (limited to 'shared/bool.h')
-rw-r--r--shared/bool.h9
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 */