home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / progrmng / stk110.lzh / STKSRC.COM / STRIPCMT.AWK < prev    next >
Encoding:
Text File  |  1991-02-25  |  196 b   |  5 lines

  1. ### An AWK script to strip comments and empty lines from a C source file
  2. /^\/\*\**$/    { no_print=1; }
  3.         { if (!no_print && $0!="" && substr($0,1,5)!="#incl") print }
  4. /^\*\**\/$/    { no_print=0 }
  5.