cScm Configuration Daemon

cScm – is a tool to convert SCM configuration files into binary format and store its in shared memory for reading by cSvn-ui and cGit-ui CGI scripts

12 Commits   0 Branches   1 Tag

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