summaryrefslogtreecommitdiff
path: root/docs/application/identifier.md
blob: 47dcd793a067ba5263b1b7b4e4c3f54b6432dd57 (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 6

// TODO 60 charaters of [A-Za-z0-9_] in 48 bytes

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