?? standard.h
字號:
/* standard.h - included in every C module */
/* */
/* defines things that every C module is likely */
/* to want defined */
typedef unsigned short ushort;
typedef unsigned long ulong;
typedef unsigned char uchar;
typedef ushort word;
typedef ulong dword;
typedef uchar byte;
typedef uchar bool;
typedef word boolean;
#define NULL 0
#define FALSE 0
#define TRUE 1
#define UNDEFINED 0xffff
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -