home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Borland Programmer's Resource
/
Borland_Programmers_Resource_CD_1995.iso
/
code
/
graphics
/
stk100
/
stksrc.com
/
STRIPCMT
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-10-20
|
195 b
|
5 lines
### An AWK script to strip comments and empty lines from a C source file
/^\/\*\**/ { no_print=1; }
{ if (!no_print && $0!="" && substr($0,1,5)!="#incl") print }
/^\*\**\/$/ { no_print=0 }