summaryrefslogtreecommitdiff
path: root/docs/application/identifier.md
blob: 3195955e8344e434c1dceadb02914d437f30773e (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 10

// TODO 100 charaters of [A-Za-z0-9_] in 80 bytes

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