From 2202e87c466803eeaddd974006aa9950d8e0d067 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sun, 15 Mar 2026 12:23:21 +0200 Subject: feat!: Split into separate files --- global.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 global.h (limited to 'global.h') 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 + +typedef uint8_t bool; +#define false 0 +#define true 1 + +typedef int32_t i32; +typedef uint32_t u32; + + +#endif /* _GLOBAL */ -- cgit v1.2.3