diff options
| author | Syndamia <kamen@syndamia.com> | 2026-03-15 12:23:21 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2026-03-15 12:23:21 +0200 |
| commit | 2202e87c466803eeaddd974006aa9950d8e0d067 (patch) | |
| tree | 55cac9843e5789ac6ff29345ecd4fc44775c6b31 /global.h | |
| parent | 47e28b44615b9b068776f61b8741ea8692461c1d (diff) | |
| download | ppm_graphics-master.tar ppm_graphics-master.tar.gz ppm_graphics-master.zip | |
Diffstat (limited to 'global.h')
| -rw-r--r-- | global.h | 14 |
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 */ |
