etc/services - sync with NetBSD-8
[minix.git] / external / bsd / flex / dist / examples / fastwc / wc3.l
blob3cc5d579b4665ae3bf2e64d8d3e081369871cf5a
1 /* Somewhat faster still: potentially match a lot of text with each rule */
3 ws    [ \t]
4 nonws [^ \t\n]
5 word  {ws}*{nonws}+
6 words {word}{ws}+
8 %option main noyywrap
9 %%
10         int cc = 0, wc = 0, lc = 0;
12 {word}{ws}*             cc += yyleng; ++wc;
13 {word}{ws}*\n           cc += yyleng; ++wc; ++lc;
14 {words}{word}{ws}*      cc += yyleng; wc += 2;
15 {words}{2}{word}{ws}*   cc += yyleng; wc += 3;
16 {words}{3}{word}{ws}*   cc += yyleng; wc += 4;
18 {ws}+                   cc += yyleng;
20 \n+                     cc += yyleng; lc += yyleng;
22 <<EOF>>         {
23                 printf( "%8d %8d %8d\n", lc, wc, cc );
24                 yyterminate();
25                 }