basics.h

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 23 行

H
23
字号
#ifndef _basics_h
#define _basics_h


//Revision 1.1  1994/04/08  15:27:59  peter
//Initial revision
//

#define bool BOOL
#define true TRUE
#define false FALSE

typedef unsigned int bool;
const bool true = (0 == 0);
const bool false = (!true);

typedef unsigned int 	uint;
typedef unsigned char 	uchar, byte;
typedef unsigned short 	ushort, word;
typedef unsigned long 	ulong, dword;

#endif

⌨️ 快捷键说明

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