FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sqlcipher/tool/opcodeDoc.awk at multi-lib · CoderLawrence/sqlcipher · GitHub
CoderLawrence
/
sqlcipher
Public
forked from
sqlcipher/sqlcipher
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
sqlcipher
/
tool
/
opcodeDoc.awk
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (23 loc) · 507 Bytes
Breadcrumbs
sqlcipher
/
tool
/
opcodeDoc.awk
Copy path
File metadata and controls
23 lines (23 loc) · 507 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# 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>
"
}
Back
|
FazBrowse Home
|
New Git URL