Rizin
unix-like reverse engineering framework and cli tools
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Enumerations
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Enumerator
b
d
e
h
i
k
n
p
r
s
w
Properties
Events
Related Functions
Files
File List
File Members
All
$
.
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
[
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
.
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
▼
Rizin
Clone the Rizin project and keep it updated
Contributor Covenant Code of Conduct
How to report issues
DEVELOPERS
README
AVR (arduino, atmega128, ..)
Brainfuck support for rizin
Calling Conventions profiles
Cross-compilation
Rizin Debugger Internals
Conditional breakpoints
ESIL
FLIRT
Connecting rizin with gdb
What is GProbe?
Packaging
RAP protocol
Release process
RzIL
Command parsing and command handling
SIOL - Simple IO Layer
WinDBG
Install Rizin
README
SDB (string database)
Security Policy
README
Capstone Engine
COMPILE
Xcode Project for Capstone
Rizin libdemangle
cabextract
CONTRIBUTING
Project Maintainers
README
Supported platforms
libzip API changes
INSTALL
NEWS
README
Security Policy
Before next release
Projects for various integrated development environments (IDE)
gen_manual - a program for automatic generation of manual from source code
Meson build system for lz4
Snap Packaging
LZ4 Block Format Description
LZ4 Frame Format Description
LZ4 Streaming API Example : Double Buffer
LZ4 Streaming API Example : Line by Line Text Compression
LZ4 API Example : Dictionary Random Access
LZ4 examples
LZ4 Streaming API Basics
LZ4 Windows binary package
LZ4 - Library Files
lz4(1) – lz4, unlz4, lz4cat - Compress or decompress .lz4 files
Command Line Interface for LZ4 library
LZ4 - Extremely fast compression
Programs and scripts for automated testing of LZ4
LICENSE
ptrace-wrap
rizin-shell-parser
spp
<tt>tree-sitter-config</tt>
<tt>tree-sitter-loader</tt>
Tree-sitter CLI
CONTRIBUTING\ilineb
index\ilineb
section-2-using-parsers\ilineb
section-3-creating-parsers\ilineb
section-4-syntax-highlighting\ilineb
section-5-implementation\ilineb
section-6-contributing\ilineb
section-8-code-navigation-systems\ilineb
<tt>tree-sitter-highlight</tt>
Rust Tree-sitter
Web Tree-sitter
Subdirectories
ICU Parts
tree-sitter
<tt>tree-sitter-tags</tt>
tree-sitter-c
tree-sitter-c
xxHash - Extremely fast hash algorithm
Todo List
►
Modules
►
Namespaces
►
Classes
▼
Files
►
File List
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Events
Friends
Macros
Modules
Pages
tree.h
Go to the documentation of this file.
1
#ifndef TREE_SITTER_TREE_H_
2
#define TREE_SITTER_TREE_H_
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
typedef
struct
{
9
const
Subtree
*
child
;
10
const
Subtree
*
parent
;
11
Length
position
;
12
TSSymbol
alias_symbol
;
13
}
ParentCacheEntry
;
14
15
struct
TSTree
{
16
Subtree
root
;
17
const
TSLanguage
*
language
;
18
TSRange
*
included_ranges
;
19
unsigned
included_range_count
;
20
};
21
22
TSTree
*
ts_tree_new
(
Subtree
root
,
const
TSLanguage
*language,
const
TSRange
*,
unsigned
);
23
TSNode
ts_node_new
(
const
TSTree
*,
const
Subtree
*,
Length
,
TSSymbol
);
24
25
#ifdef __cplusplus
26
}
27
#endif
28
29
#endif
// TREE_SITTER_TREE_H_
root
int root
Definition:
enough.c:226
TSSymbol
uint16_t TSSymbol
Definition:
parser.h:19
Length
Definition:
length.h:9
ParentCacheEntry
Definition:
tree.h:8
ParentCacheEntry::parent
const Subtree * parent
Definition:
tree.h:10
ParentCacheEntry::position
Length position
Definition:
tree.h:11
ParentCacheEntry::child
const Subtree * child
Definition:
tree.h:9
ParentCacheEntry::alias_symbol
TSSymbol alias_symbol
Definition:
tree.h:12
TSLanguage
Definition:
parser.h:90
TSNode
Definition:
api.h:92
TSRange
Definition:
api.h:60
TSTree
Definition:
tree.h:15
TSTree::root
Subtree root
Definition:
tree.h:16
TSTree::included_ranges
TSRange * included_ranges
Definition:
tree.h:18
TSTree::included_range_count
unsigned included_range_count
Definition:
tree.h:19
TSTree::language
const TSLanguage * language
Definition:
tree.h:17
ts_tree_new
TSTree * ts_tree_new(Subtree root, const TSLanguage *language, const TSRange *, unsigned)
Definition:
tree.c:8
ts_node_new
TSNode ts_node_new(const TSTree *, const Subtree *, Length, TSSymbol)
Definition:
node.c:17
Subtree
Definition:
subtree.h:156
subprojects
tree-sitter-0.20.6
lib
src
tree.h
Generated by
1.9.1