1 /* Somewhat faster still: potentially match a lot of text with each rule */
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;
20 \n+ cc += yyleng; lc += yyleng;
23 printf( "%8d %8d %8d\n", lc, wc, cc );