types.h

来自「wimax BS simulation code,implemented und」· C头文件 代码 · 共 33 行

H
33
字号
/* * This piece of code is totally free. If any pitfalls found,  * please feel free to contact me at jetmotor@21cn.com * THANKS A LOT! */#ifndef _TYPES_H#define _TYPES_Htypedef unsigned long	ulong_t;typedef unsigned int	uint32_t;typedef unsigned short	uint16_t;typedef unsigned char	uint8_t;typedef long		long_t;typedef int		int32_t;typedef short		int16_t;/*typedef char int8_t;*/#define UINT32 unsigned int#define UINT16 unsigned short#define UINT8  unsigned char#define BOOL   unsigned char#define TRUE   (1)#define FALSE  (0)#endif

⌨️ 快捷键说明

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