?? error.hh
字號:
/* File: error.hh Description: By: Alex Theo de Jong Created: September 1995*/#ifndef __error_hh__#define __error_hh__#define MAX_LEX_ERR 10#define msg(s){ printf(s); fflush(stdout); }#define message(s){ cout << s << "\n"; cout.flush(); }// fflush(stdout); }#define warning(s) { printf("warning - %s\n", s); }// fflush(stdout); }#define error(s) { cerr << s << "\n"; cerr.flush(); }// printf("error - %s\n", s); fflush(stdout); }#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -