如何在c中调用flex解析器

发布于 2024-08-11 11:05:03 字数 1566 浏览 4 评论 0原文

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

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

发布评论

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

评论(2

去了角落 2024-08-18 11:05:03

通过调用yylex()

默认情况下,lexstdin读取,如果您希望它从其他流读取,请分配yyin,例如

yyin = fopen("myfile", "r");

By calling yylex().

By default lex reads from stdin, if you want it to read from other stream, assign yyin, like

yyin = fopen("myfile", "r");
彩扇题诗 2024-08-18 11:05:03

值得注意的是,yylex 没有在任何地方声明,因此您需要声明它:

int yylex ();

传统上,lex 或 flex 的整个输出似乎将通过 #include 合并到 C 程序中。

Flex 的最新版本包含一个创建头文件的选项,可以在命令行上通过

--header-file

选项,或者在脚本中。

%option header-file

头文件包含可以使用的内容,例如,要求 Flex 从内存而不是文件中读取。

It's worth noting that yylex is not declared anywhere so you need to declare it:

int yylex ();

Traditionally it seems that the entire output of lex or flex would be incorporated in the C program via #include.

Recent versions of Flex include an option to create a header file, either on the command line via the

--header-file

option, or in the script

%option header-file

The header file contains stuff which can be used, for example, to ask Flex to read from memory rather than a file.

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