如何从 ac 文件调用你的 yacc ?
我想使用 yacc 解析命令行,但我想从 ac 文件调用它。怎么可能?
i want to parse a command line using a yacc but i want to call it from a c file. how it is possible ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
YACC 生成的代码创建一个名为 yyparse() 的函数。只需调用它即可。
例如,请参见:http://dinosaur.compilertools.net/yacc/index.html(第 8 节)。
The code generated by YACC creates a function called
yyparse()
. Simply call it.See for example: http://dinosaur.compilertools.net/yacc/index.html (section 8).