home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume12 / cake / part04 / Aux / ccincl_s.l < prev    next >
Encoding:
Lex Description  |  1987-10-14  |  240 b   |  31 lines

  1. %{
  2. /*
  3. **    Scanner for ccincl
  4. */
  5.  
  6. static    char
  7. rcs_id[] = "$Header$";
  8.  
  9. #undef    YYLMAX
  10. #define    YYLMAX    512
  11. %}
  12.  
  13. nl    [\n\f]
  14. nonl    [^\n\f]
  15.  
  16. %%
  17.  
  18. #{nonl}*{nl}        {
  19.                 process(yytext);
  20.                 fflush(stdout);
  21.             }
  22.  
  23. {nonl}*{nl}        ;
  24.  
  25. %%
  26.  
  27. yywrap()
  28. {
  29.     return 1;
  30. }
  31.