6 lines
138 B
Text
6 lines
138 B
Text
|
# SED script for preprocessing embedded headers from C source comments
|
||
|
# Locate and coalesce adjacent comments
|
||
|
/\*\/$/N
|
||
|
s/\*\/\n\/\*/\
|
||
|
/
|