This website requires JavaScript.
Explore
Help
Sign In
libs
/
rt-thread
Watch
4
Star
0
Fork
You've already forked rt-thread
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
85cdcab460
rt-thread
/
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\""
;
}
View Git Blame
Copy Permalink