28 lines
473 B
C
28 lines
473 B
C
|
|
#include <stdio.h>
|
|
|
|
#include "token.h"
|
|
|
|
int main()
|
|
{
|
|
if (yyparse() == 0) {
|
|
printf("Parse successful!\n");
|
|
} else {
|
|
printf("Parse failed!\n");
|
|
}
|
|
|
|
// yyin = fopen("program.c", "r");
|
|
// if (!yyin) {
|
|
// printf("Could not open source file!\n");
|
|
// return 1;
|
|
// }
|
|
|
|
// while (1) {
|
|
// enum yytokentype t = yylex();
|
|
// if (t == YYEOF) break;
|
|
// printf("token: %d text: %s\n", t, yytext);
|
|
// }
|
|
}
|
|
|
|
|