home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / grafik / sprites / stksrc / stripcmt.awk < prev    next >
Encoding:
Text File  |  1991-02-24  |  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.