📄 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 + -