summaryrefslogtreecommitdiff
path: root/cscmd/lex.h
blob: 5c686e21f404ba78a75818194f5a4522908f77d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef    __LEX_H
#define    __LEX_H


extern int lineno;
extern int colno;


#ifdef __cplusplus
extern "C" {
#endif


extern void init_lex( void );
extern void fini_lex( void );

extern int yylex( void );
extern void yyerror( char const *s );


#ifdef __cplusplus
}
#endif

#endif  /* __LEX_H */