13 lines
270 B
Text
13 lines
270 B
Text
|
# SED script for preprocessing embedded headers from C source comments
|
||
|
# (S. Chamberlain markup)
|
||
|
# beginning of many passes of cleanup work
|
||
|
#
|
||
|
# Delete empty comment blocks
|
||
|
/^\/\*$/N
|
||
|
/^\/\*\n\*\/ *$/d
|
||
|
#
|
||
|
# Locate and coalesce adjacent comments
|
||
|
/\*\/$/N
|
||
|
s/\*\/\n\/\*/\
|
||
|
/
|