如何解析 yacc 中的命令行参数?
如何解析 yacc 中的命令行参数?
当然,我在 lex 和 lex 中都未定义输入; yacc 然后写入
int input(void)
{
printf("in input\n:");
char c;
if(target > limit)
return 0;
if((c = target[0][offset++]) != '\0')
return (c);
target++;
offset =0;
return (' ');
}
目标包含命令行参数的位置。但只有标准输入被执行,如何使 dis 输入函数被执行。
how to parse from command line arguements in yacc ?
of course i undefined input in both lex & yacc and then wrote
int input(void)
{
printf("in input\n:");
char c;
if(target > limit)
return 0;
if((c = target[0][offset++]) != '\0')
return (c);
target++;
offset =0;
return (' ');
}
where target contains the command line arguements. But only the standard input is getting excueted how to make dis input function get executed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是希望您的生成解析器接受命令行参数吗?然后您需要将这些参数添加到主函数中。词法分析器输入称为 FILE* yyin,并在词法分析器中初始化为 stdin。您可以通过以下方式更改默认行为:
如果您希望执行自己的函数而不是由flex提供的函数,则需要定义
YY_INPUT
宏。Did you mean you want your generates parser accept command line arguments? Then you need to add those arguments to the main function. The lexer input is called
FILE* yyin
, and is initialized tostdin
in the lexer. You can change the default behavior byIf you want your own function to be executed instead of the one provided by flex, you need to define the
YY_INPUT
macro.