integer.h

来自「嵌入式文件系统设计」· C头文件 代码 · 共 24 行

H
24
字号
#ifndef _INTEGER

typedef int				INT;
typedef unsigned int	UINT;

typedef char			CHAR;
typedef unsigned char	UCHAR;
typedef unsigned char	BYTE;

typedef short			SHORT;
typedef unsigned short	USHORT;
typedef unsigned short	WORD;

typedef long			LONG;
typedef unsigned long	ULONG;
typedef unsigned long	DWORD;

typedef unsigned char	BOOL;
#define FALSE	0
#define TRUE	1

#define _INTEGER
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?