9 lines
123 B
Plaintext
9 lines
123 B
Plaintext
|
# sed script for BFD header files:
|
||
|
# Transpose <blank line> <end comment>
|
||
|
/^$/,/^ *[^ ]*.*$/{
|
||
|
/^$/N
|
||
|
/^ *\n\*\/$/c\
|
||
|
*\/\
|
||
|
|
||
|
}
|