summaryrefslogtreecommitdiffstats
path: root/lib/libsqlite3/tool/tostr.awk
blob: 83c6cc1a50ad6414c1a0d89f987ea87dbf24cec4 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/awk
#
# Convert input text into a C string
#
{
  gsub(/\\/,"\\\\");
  gsub(/\"/,"\\\"");
  print "\"" $0 "\\n\"";
}