我正在尝试运行以下程序,但出现无法识别的规则:37。不知道为什么它在第 37 行给了我这个错误。
命令:$ lex mycsv2html.l
%{ //Definition Section
#include <stdin.h>
#include <stdout.h>
int c;
extern int yylval;
%}
%% // Rule Section
" " ;
[\n] {
c = yytext[0];
yylval = c - '\n';
return(br);
}
["] {
c = yytext[0];
yylval = c - '';
return('');
}
[<] {
c = yytext[0];
yylval = c - '';
return('<');
}
[>] {
c = yytext[0];
yylval = c - '';
return('>');
}
int main(void) //C Code Section
{
/* Call the lexer, then quit. */
yylex();
return 0;
}