Sign in
chromium
/
external
/
github.com
/
sqlite
/
sqlite.git
/
refs/heads/Cplusplus-comment
/
.
/
tool
/
tostr.awk
blob: b4f48d3db559ae9624ce82a328ebdef9b966e0f7 [
file
] [
log
] [
blame
] [
edit
]
#!/usr/bin/awk
#
# Convert input text into a C string
#
{
gsub
(
/\"/
,
"\\\""
);
print
"\""
$0
"\\n\""
;
}