summaryrefslogtreecommitdiff
path: root/include/config.hpp
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-08-09 08:33:08 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-08-09 08:33:08 +0200
commit5d34aff5888d3f0c624251f15bedb96c347978d6 (patch)
tree69a49651271d645ca7eaa114cb1830bf759c0930 /include/config.hpp
parentb94a7ae06b20d550c727d5192cea8baf3e8fb641 (diff)
refactors
Diffstat (limited to 'include/config.hpp')
-rw-r--r--include/config.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/config.hpp b/include/config.hpp
new file mode 100644
index 0000000..3279e2e
--- /dev/null
+++ b/include/config.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+#include "stdint.h"
+
+#define s8 int8_t
+#define s16 int16_t
+#define s32 int32_t
+#define s64 int64_t
+
+#define u8 uint8_t
+#define u16 uint16_t
+#define u32 uint32_t
+#define u64 uint64_t \ No newline at end of file