This website requires JavaScript.
Explore
Help
Sign In
chinky
/
rtt-f030
Watch
1
Star
0
Fork
You've already forked rtt-f030
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
4d93c31cce
rtt-f030
/
components
/
external
/
SQLite-3.8.1
/
tool
/
tostr.awk
9 lines
106 B
Awk
Raw
Blame
History
#!/usr/bin/awk
#
# Convert input text into a C string
#
{
gsub
(
/\"/
,
"\\\""
)
;
print
"\""
$
0
"\\n\""
;
}
Reference in New Issue
View Git Blame
Copy Permalink