home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume12
/
cake
/
part04
/
Aux
/
ccincl_s.l
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Lex Description
|
1987-10-14
|
240 b
|
31 lines
%{
/*
** Scanner for ccincl
*/
static char
rcs_id[] = "$Header$";
#undef YYLMAX
#define YYLMAX 512
%}
nl [\n\f]
nonl [^\n\f]
%%
#{nonl}*{nl} {
process(yytext);
fflush(stdout);
}
{nonl}*{nl} ;
%%
yywrap()
{
return 1;
}