diff options
author | 2016-09-23 09:21:58 +0000 | |
---|---|---|
committer | 2016-09-23 09:21:58 +0000 | |
commit | 25e4f8ab5acd0ef40feec6767a572bebbbe294b3 (patch) | |
tree | 20197c0e46bb6d260f4a310b6d5dd73b8d826f01 /lib/libsqlite3/tool/opcodeDoc.awk | |
parent | remove usr.bin/sqlite3, it has moved back to ports (diff) | |
download | wireguard-openbsd-25e4f8ab5acd0ef40feec6767a572bebbbe294b3.tar.xz wireguard-openbsd-25e4f8ab5acd0ef40feec6767a572bebbbe294b3.zip |
remove lib/libsqlite3, it has moved back to ports
Diffstat (limited to 'lib/libsqlite3/tool/opcodeDoc.awk')
-rw-r--r-- | lib/libsqlite3/tool/opcodeDoc.awk | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/libsqlite3/tool/opcodeDoc.awk b/lib/libsqlite3/tool/opcodeDoc.awk deleted file mode 100644 index 492010624fd..00000000000 --- a/lib/libsqlite3/tool/opcodeDoc.awk +++ /dev/null @@ -1,23 +0,0 @@ -# -# Extract opcode documentation for sqliteVdbe.c and generate HTML -# -BEGIN { - print "<html><body bgcolor=white>" - print "<h1>SQLite Virtual Database Engine Opcodes</h1>" - print "<table>" -} -/ Opcode: /,/\*\// { - if( $2=="Opcode:" ){ - printf "<tr><td>%s %s %s %s</td>\n<td>\n", $3, $4, $5, $6 - }else if( $1=="*/" ){ - printf "</td></tr>\n" - }else if( NF>1 ){ - sub(/^ *\*\* /,"") - gsub(/</,"<") - gsub(/&/,"&") - print - } -} -END { - print "</table></body></html>" -} |