1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* gramble - gammar ramble * * team teso * * input functions include file */ #ifndef GRAMBLE_INPUT_H #define GRAMBLE_INPUT_H int yyerror (char *str); int yywrap (void); int in_yyinput (char *buf, int size_max); void *in_parse (char *buf, int buf_len); #endif