This commit is contained in:
2025-03-16 05:52:09 +08:00
parent bfcb951628
commit ac0bf1639e
28 changed files with 738 additions and 76 deletions

View File

@@ -3,7 +3,12 @@
#define true 1
#define false 0
#define ENDL "\r\n"
#define NAME_MAX 255
#define PATH_MAX 4096
typedef long unsigned int size_t;
typedef unsigned char byte_t;
typedef unsigned char uint8_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef long long int int64_t;
typedef unsigned long long int uint64_t;