blob: 01e3c05266ec9c9943a6999fd590396f5b89c10e (
plain)
1
2
3
4
5
6
7
8
|
# NOTE: BEGIN pattern gives errors if other than 1st line;
# END ditto if other than last.
BEGIN { print "/* ------------------------------START FROM " FILENAME "*/" }
#
# keep /*proto-internal blocks
/^\/\*proto-internal\*/,/^\*\/|^\*-\*\//
#
END { print "/* --------------------------------END FROM " FILENAME "*/\n" }
|