?? macros.h
字號:
#define EXIT_FAILURE 1char *malloc();#define NEW(p, type) if ((p=(type *) malloc (sizeof(type))) == NULL) {\ printf ("NEW: Out of Memory!\n");\ exit(EXIT_FAILURE);\ }#define FREE(p) if (p) { free ((char *) p); p = NULL; }#define SWAP(t,x,y) { t = x; x = y; y = t; }
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -