19 lines
257 B
Plaintext
19 lines
257 B
Plaintext
%%
|
|
"include" { printf("INCLUDE"); }
|
|
"declare" { printf("DECLARE"); }
|
|
"function" { printf("FUNCTION"); }
|
|
%%
|
|
|
|
#define EMKFILE "emkfile"
|
|
|
|
int yywrap(){}
|
|
int main() {
|
|
FILE *fp;
|
|
char filename[50];
|
|
fp = fopen(EMKFILE, "r");
|
|
yyin = fp;
|
|
|
|
yylex();
|
|
return 0;
|
|
}
|