error.hh
来自「ac3的解码程序」· HH 代码 · 共 27 行
HH
27 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?