home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
rtsi.com
/
2014.01.www.rtsi.com.tar
/
www.rtsi.com
/
OS9
/
OSK
/
EFFO
/
forum16.lzh
/
SOFTWARE
/
AWK
/
EXAMPLES
/
com_tst
< prev
next >
Wrap
Text File
|
1991-05-06
|
517b
|
22 lines
#
# com_tst - check for nested or unclosed C comments
#
# syntax: gawk -f com_tst <file>
#
# status: bug:
#
BEGIN { c=0 }
/\/\*/ { if (c!=0)
print "Slashterix collision, line", NR
c=1
}
/\*\// { if (c!=1)
print "Asterslash collision, line", NR
c=0
}
END { if (c !=0) print "missing asterslash at end"
else print "Comment delimiters are OK"
}