00001 /*------------------------------------------------------------------------*/ 00013 #ifndef YACC_H 00014 #define YACC_H 00015 00016 /* グローバル変数 */ 00017 00019 extern FILE * yyin; 00020 00021 00022 /* 関数プロトタイプ */ 00023 00024 #ifdef __cplusplus 00025 extern "C" { 00026 #endif 00027 00028 00029 extern int yylex(); 00030 extern void yyerror(char * s); 00031 extern int yyparse(); 00032 00033 00034 #ifdef __cplusplus 00035 } 00036 #endif 00037 00038 00039 #endif /* YACC_H */ 00040
1.5.0