#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 */