This website requires JavaScript.
Explore
Help
Sign In
status-im
/
sqlcipher
Watch
1
Star
0
Fork
0
mirror of
https://github.com/status-im/sqlcipher.git
synced
2026-08-30 22:11:14 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
migrate
sqlcipher
/
tool
/
tostr.awk
T
Add File
New File
Upload File
Apply Patch
Copy Permalink
9 lines
106 B
Awk
Raw
Permalink
Normal View
History
Unescape
Escape
track 3.7.7.1
2011-08-17 13:17:32 -04:00
#!/usr/bin/awk
#
# Convert input text into a C string
#
{
gsub
(
/\"/
,
"\\\""
);
print
"\""
$
0
"\\n\""
;
}
Reference in New Issue
Copy Permalink