stdtypes.h

来自「这是一个VHDL(硬件描述语言)的编译器」· C头文件 代码 · 共 30 行

H
30
字号
#ifndef STDTYPES_H#define STDTYPES_H/* These rather convoluted ifndef's are required because both FALSE,   TRUE and BOOLEAN are defined by various windows and windows/nt   headers.  When these headers are included, a redefine error results   without these ifndefs.  */  typedef enum {#ifndef FALSE                 FALSE = 0, #endif#ifndef TRUE                 TRUE = 1,#endif                  BOGUS} BoolVals;typedef int Boolean;typedef unsigned short int ushort;typedef unsigned int uint;typedef unsigned char uchar;typedef char * pChar;#define LOCAL static#endif

⌨️ 快捷键说明

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