initial commit

This commit is contained in:
2025-03-11 05:17:34 +08:00
commit e906741ee9
27 changed files with 924 additions and 0 deletions

9
include/stddef.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#define true 1
#define false 0
#define ENDL "\r\n"
typedef long unsigned int size_t;
typedef unsigned char byte_t;
typedef unsigned long long int uint64_t;