summaryrefslogtreecommitdiff
path: root/docs/application/identifier.md
blob: 8f85b1537476d34728538e2ed8cfe642a7b4177b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Identifier

---

Store vars, types and symbols as compressed strings

## Object Definitions

```c
#define KPL_IDENTIFIER_PARTS 9

// TODO 90 charaters of [A-Za-z0-9_] in 72 bytes

typedef struct {
    uint64_t parts[KPL_IDENTIFIER_PARTS];
} kpl_identifier;
```