home *** CD-ROM | disk | FTP | other *** search
- #
- # Convert app-defaults file to C strings decls.
- #
- # Invoke by: sed -n -f ad2c.sed
- #
- : read
- # remove comments
- /^!/d
- # remove blanks
- /^$/d
- # escape quotes
- s/"/\\"/g
- # escape backslash
- s/\\/\\\\/g
- # except the line continuation ones
- s/\\$//g
- # add leading quote
- s/^/"/
- #
- : test
- /\\$/b slash
- s/$/",/
- p
- n
- b read
- #
- : slash
- p
- n
- # just like "read" only doesn't add leading quote
- /^!/d
- /^$/d
- s/"/\\"/g
- s/\\\\/\\/g
- s/\\n/\\\\n/g
- s/\\t/\\\\t/g
- s/\\f/\\\\f/g
- s/\\b/\\\\b/g
- b test
-