summaryrefslogtreecommitdiff
path: root/global.h
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2026-03-15 12:23:21 +0200
committerSyndamia <kamen@syndamia.com>2026-03-15 12:23:21 +0200
commit2202e87c466803eeaddd974006aa9950d8e0d067 (patch)
tree55cac9843e5789ac6ff29345ecd4fc44775c6b31 /global.h
parent47e28b44615b9b068776f61b8741ea8692461c1d (diff)
downloadppm_graphics-2202e87c466803eeaddd974006aa9950d8e0d067.tar
ppm_graphics-2202e87c466803eeaddd974006aa9950d8e0d067.tar.gz
ppm_graphics-2202e87c466803eeaddd974006aa9950d8e0d067.zip
feat!: Split into separate filesHEADmaster
Diffstat (limited to 'global.h')
-rw-r--r--global.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/global.h b/global.h
new file mode 100644
index 0000000..9b322a9
--- /dev/null
+++ b/global.h
@@ -0,0 +1,14 @@
+#ifndef _GLOBAL
+#define _GLOBAL
+
+#include <stdint.h>
+
+typedef uint8_t bool;
+#define false 0
+#define true 1
+
+typedef int32_t i32;
+typedef uint32_t u32;
+
+
+#endif /* _GLOBAL */