From ff788bb8193bcf0f90dd0df10cf5c3ed660dd98f Mon Sep 17 00:00:00 2001 From: Francesco Date: Mon, 26 Jan 2026 15:21:52 +0100 Subject: [PATCH] feat(types): add more types --- include/types.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/types.h b/include/types.h index e44c7ec..e52d31d 100644 --- a/include/types.h +++ b/include/types.h @@ -5,7 +5,13 @@ * Define our standard types */ typedef unsigned char u8; +typedef unsigned short u16; typedef unsigned int u32; +typedef unsigned long long u64; typedef u32 size_t; +#define true 1 +#define false 0 +#define NULL ((void *)0) + #endif