Files
osc2025/include/stddef.h
2025-04-08 07:01:24 +08:00

17 lines
305 B
C

#pragma once
#define true 0x1
#define false 0x0
#define ENDL "\r\n"
#define NAME_MAX 255
#define PATH_MAX 4096
typedef long unsigned int size_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;