parser/c_compiler/include/prototypes.h
changeset 37 0fbbe329c3a2
child 64 993b97c4ad2d
equal deleted inserted replaced
36:f52a9deddfc0 37:0fbbe329c3a2
       
     1 #ifndef PROTOTYPES_H
       
     2 #define PROTOTYPES_H
       
     3 
       
     4 int yyparse();
       
     5 int yylex();
       
     6 void yyerror(char*);
       
     7 int yywrap();
       
     8 int count();
       
     9 int check_type();
       
    10 void comment();
       
    11 
       
    12 #define YYSTYPE char*
       
    13 #endif
       
    14