mirror of
https://github.com/status-im/sqlcipher.git
synced 2025-02-23 17:28:17 +00:00
9 lines
106 B
Awk
9 lines
106 B
Awk
#!/usr/bin/awk
|
|
#
|
|
# Convert input text into a C string
|
|
#
|
|
{
|
|
gsub(/\"/,"\\\"");
|
|
print "\"" $0 "\\n\"";
|
|
}
|