blob: 3db91dce722514204c4ee818f18f10fec2cb1b64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Name
---
Each word representing a var, symbol or type gets an `NAME_IDENTIFIER` -> `kpl_name*` associated with it
## Object Definitions
```c
typedef struct _kpl_name {
KPL_ALLOC_TREE_HEADER(struct _kpl_name);
char c_str[];
} kpl_name;
typedef strcut {
kpl_name *root;
kpl_mutex mutex;
} kpl_name_tree;
```
|