From 608968668b6b221a4e1829a4161e26c473334e5f Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sat, 16 Aug 2025 15:00:01 +0200 Subject: [PATCH] Types --- types.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/types.h b/types.h index cd25ff8..69e74d4 100644 --- a/types.h +++ b/types.h @@ -4,4 +4,13 @@ typedef unsigned char u8; typedef unsigned short u16; typedef unsigned int u32; typedef unsigned long u64; -typedef u64 size_t; + +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; +typedef unsigned int uint32_t; +typedef unsigned long uint64_t; +typedef uint64_t size_t; + +typedef uint64_t uintptr_t; + +typedef u8 bool;