File: tostr.awk

package info (click to toggle)
sqlite3 3.8.7.1-1%2Bdeb8u2
  • links: PTS
  • area: main
  • in suites: jessie
  • size: 40,812 kB
  • ctags: 19,822
  • sloc: ansic: 150,084; sh: 20,920; tcl: 11,058; makefile: 1,290; yacc: 1,093; awk: 268
file content (8 lines) | stat: -rw-r--r-- 106 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
#!/usr/bin/awk
#
# Convert input text into a C string
#
{
  gsub(/\"/,"\\\"");
  print "\"" $0 "\\n\"";
}