?? mem.h
字號(hào):
/* mem.h Names and typedefs that I use regularly.
1984 Mark E. Mallett
*/
#ifndef MEM_INC /* If not already included */
#define MEM_INC 0 /* Avoid duplicate includes */
#define AZTEC 1 /* For Aztec compiler specific stuff */
#define ISCPM 1 /* For CPM */
#define isalpha(c) (isupper(c) || islower(c))
typedef char BYTE;
typedef int BOOL;
typedef int WORD;
typedef long LONG;
typedef int AITYPE; /* type which can hold both an int
and an address value. */
#define IND static /* For variables with no allocation
dependancies (don't have to be
on the stack) */
/**//* Various constants */
#define TRUE 1
#define FALSE 0
#define NUL '\000'
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -