📄 err.c
字号:
# include <stdio.h># include "ansi_parse.h" static char sccsid[] = "@(#)err.c 1.1 1/27/94";yyerror (s) char *s;{ warning (s, (char *)0);}warning (s,t) char *s, *t;{ /* extern int lineno; extern char *progname; extern char the_current_file[]; */ fprintf (stderr,"%s: %s",progname,s); if (t) fprintf (stderr," %s",t); fprintf (stderr," near line %d in file %s\n",lineno, the_current_file);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -