first commit

This commit is contained in:
Justus Wolff
2026-02-26 00:06:36 +01:00
commit 115b4c88a1
16 changed files with 750 additions and 0 deletions

9
src/headers/stddef.h Normal file
View File

@@ -0,0 +1,9 @@
#define uint8_t unsigned char
#define uint16_t unsigned short
#define uint32_t unsigned int
#define int8_t signed char
#define int16_t signed short
#define int32_t signed int
#define size_t uint32_t