Sign in
mojo
/
mojo-tools
/
fa68617331fa0660c063681adf3eac0ded3b4571
/
.
/
third_party
/
sqlite
/
sqlite-src-3080704
/
tool
/
tostr.awk
blob: b4f48d3db559ae9624ce82a328ebdef9b966e0f7 [
file
] [
log
] [
blame
]
#!/usr/bin/awk
#
# Convert input text into a C string
#
{
gsub
(
/\"/
,
"\\\""
);
print
"\""
$0
"\\n\""
;
}