error.h

来自「guide and some example with visualC++」· C头文件 代码 · 共 25 行

H
25
字号
#ifndef ERRORH_#define ERRORH_/* error handling  error.c---------------------------*/void EiC_error(char *, ...);int EiC_match(int t, char * m);void EiC_warningerror(char *, ...);void EiC_clear_err_msgs(void);void EiC_formatMessage(char *,...);/* error handling  globals---------------------------*/extern int EiC_ParseError;          /* if 1 an error has occured */extern int EiC_ErrorRecover;       /* if 1 attempting to recover from error*/extern int EiC_errs;           /* Number of errors and warnings */extern void (*EiC_messageDisplay)(char *);  /* pointer function to					     * message Display					     * function					     */#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?