在lex中如何使yyin指向yacc中具有main函数的文件?

发布于 2024-08-12 05:42:02 字数 190 浏览 5 评论 0原文

我将传递给 yacc 中 main 的参数存储在一个文件中。现在我希望 lex 从该文件而不是终端读取其输入。我知道我可以将 yyin 指向一个文件 就像 yyin = fopen("fn","r"); 但这仅当 main 位于 lex 中时才有效。当我在 yacc 的 main 中使用这个 yyin 声明时,它显示一个错误,所以请提出一些建议来克服这个问题。

I am storing the arguments passed to main in yacc in a file. Now I want the lex to read its input from this file rather than the terminal. I know I can point yyin to a file
like yyin = fopen("fn","r"); but this works only when main is in lex. When I use this yyin declaration in main in yacc, it shows an error so please suggest something to overcome this problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

数理化全能战士 2024-08-19 05:42:02

您可能只需要声明

extern FILE * yyin;

如果这不能解决问题,请提供您收到的错误消息。

You probably just need to declare

extern FILE * yyin;

If that doesn't solve the problem, please give the error message you got.

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