Files
osc2025/include/stddef.h
2025-04-08 06:59:49 +08:00

15 lines
298 B
C

#pragma once
#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 uint8_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef long long int int64_t;
typedef unsigned long long int uint64_t;