This website requires JavaScript.
Explore
Help
Sign In
status-im
/
sqlcipher
mirror of
https://github.com/status-im/sqlcipher.git
Watch
2
Star
0
Fork
You've already forked sqlcipher
0
Code
Issues
Projects
Releases
Wiki
Activity
894b8ac578
sqlcipher
/
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