8 lines
304 B
Text
Executable file
8 lines
304 B
Text
Executable file
# NOTE: BEGIN pattern gives errors if other than 1st line;
|
|
# END ditto if other than last.
|
|
BEGIN { print "/* ------------------------------START FROM " FILENAME "*/" }
|
|
#
|
|
# keep /*proto blocks
|
|
/^\/\*proto\*/,/^\*\/|^\*-\*\//
|
|
#
|
|
END { print "/* --------------------------------END FROM " FILENAME "*/\n" }
|