Chromium Code Reviews

Side by Side Diff: third_party/sqlite/sqlite-src-3080704/tool/tostr.awk

Issue 949043002: Add //third_party/sqlite to dirs_to_snapshot, remove net_sql.patch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 #!/usr/bin/awk
2 #
3 # Convert input text into a C string
4 #
5 {
6 gsub(/\"/,"\\\"");
7 print "\"" $0 "\\n\"";
8 }
OLDNEW

Powered by Google App Engine