blob: 3c00aa031da437652111540b6b344e9cdf3df144 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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;
```
|