00001 #ifndef CUT_H 00002 #define CUT_H 00003 00004 /* Cut the words obtained with the lexer */ 00005 void cut_words(char *token, int isporn, int isscoring); 00006 00007 /* Cut the tags obtained with the lexer */ 00008 void cut_tags(char *token, int isporn, int isscoring); 00009 00010 #endif