include/er_yacc_helper.h
/* [<][>][^][v][top][bottom][index][help] */
FUNCTIONS
This source file includes following functions.
1 /* defined in the inc file */
2
3 #ifndef ER_YACC_HELPER_H
4 #define ER_YACC_HELPER_H
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 void myerror(void *ypar, char *s);
11 er_ret_t mysetsev(lexerr_t *erst, int ismax, char *spec);
12 void mycleanup(void *ypar);
13 void er_yy_tracelog(char *fmt, ...);
14 int ER_parse_spec(char *buf, char **ert);
15
16 /* defined for the lex file */
17 void lexcleancurbuf(void);
18 int er_yylex();
19
20 /* defined in the lex generated file */
21 extern void er_yy_delete_buffer();
22 extern void er_yy_switch_to_buffer();
23
24 #ifdef __cplusplus
25 }
26 #endif
27
28
29 #endif /* ER_YACC_HELPER_H */