00001 #ifndef MAIN_H 00002 #define MAIN_H 00003 00004 /* Launch lexer for one file */ 00005 void parse_file(char *file, int isporn, int isscoring, char *dbname, int verbose); 00006 00007 /* Launch lexer for one directory */ 00008 void parse_dir(char *directory, int isporn, int isscoring, char *dbname, int verbose); 00009 00010 /* Launch lexer for standard input */ 00011 void parse_standard_input(FILE *stdinput, int isporn, int isscoring, char *dbname, int verbose); 00012 00013 /* Display help for execution options */ 00014 void display_help(void); 00015 00016 #endif