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