summaryrefslogtreecommitdiff
path: root/docs/application/name.md
blob: afc58808fddaa5286781b011f2a558fe1b89e562 (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_POOL_HEADER(struct _kpl_name);
    char c_str[];
} kpl_name;
```