Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
chromium
/
deps
/
sqlite
/
refs/heads/upstream/linear-interpolation
/
.
/
tool
/
tostr.awk
blob: b4f48d3db559ae9624ce82a328ebdef9b966e0f7 [
file
] [
log
] [
blame
]
drh
3dcf39a
2011-06-21 03:36:06 +0000
[
diff
] [
blame
]
1
#!/usr/bin/awk
2
#
3
# Convert input text into a C string
4
#
5
{
drh
3dcf39a
2011-06-21 03:36:06 +0000
[
diff
] [
blame
]
6
gsub
(
/\"/
,
"\\\""
);
7
print
"\""
$0
"\\n\""
;
8
}