error.h
来自「乒乓球游戏程序」· C头文件 代码 · 共 22 行
H
22 行
/*----------------------------------------------------------------
* error.h -- interface to error handling functions
*----------------------------------------------------------------
*/
#ifndef gf_included_error_h
#define gf_included_error_h
void error_x (char *filename, int line, char *s1, char *s2);
/* error macro:
* This macro expands to a call to the above function,
* error_x, adding the filename and line number to the
* parameters passed.
*/
#define error(a,b) error_x (__FILE__, __LINE__, a, b)
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?