码迷,mamicode.com
首页 > 其他好文 > 详细

flex

时间:2016-04-15 02:01:48      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

flex 词法分析

fb.l

 1 %option noyywrap
 2 %{
 3 #include <stdio.h>
 4 int chars = 0;
 5 int words = 0;
 6 int lines = 0;
 7 %}
 8 
 9 %%
10 
11 [a-zA-Z]+    { words++; chars += strlen(yytext); }
12 \n            { chars++; lines++; }
13 .            { chars++; }
14 
15 %%
16 
17 int main(int argc, char **argv)
18 {
19     yylex();
20     printf("%8d%8d%8d\n", lines, words, chars);
21 }

 

$ flex fb.l

$ cc lex.yy.c

$ cat fb.l | ./a.out

 

%option noyywrap

http://stackoverflow.com/questions/1811125/undefined-reference-to-yywrap

 

flex

标签:

原文地址:http://www.cnblogs.com/hangj/p/5393758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!