如何解析 yacc 中的命令行参数?

发布于 2024-08-29 12:22:56 字数 312 浏览 8 评论 0原文

如何解析 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

俏︾媚 2024-09-05 12:22:56

您的意思是希望您的生成解析器接受命令行参数吗?然后您需要将这些参数添加到主函数中。词法分析器输入称为 FILE* yyin,并在词法分析器中初始化为 stdin。您可以通过以下方式更改默认行为:

#include <stdio.h>
extern FILE* yyin;
int main(int argv, char** argv)
{
     if(argc==2)
     {
         yyin = fopen(argv[1], "r");
         if(!yyin)
         {
             fprintf(stderr, "can't read file %s\n", argv[1]);
             return 1;
         }
     }
     yyparse();
}

如果您希望执行自己的函数而不是由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 to stdin in the lexer. You can change the default behavior by

#include <stdio.h>
extern FILE* yyin;
int main(int argv, char** argv)
{
     if(argc==2)
     {
         yyin = fopen(argv[1], "r");
         if(!yyin)
         {
             fprintf(stderr, "can't read file %s\n", argv[1]);
             return 1;
         }
     }
     yyparse();
}

If you want your own function to be executed instead of the one provided by flex, you need to define the YY_INPUT macro.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文