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

---

## Object Definitions

```c
typedef struct _kpl_buffer {
    KPL_ALLOC_HEADER(struct _kpl_buffer);
    size_t byte_length;
    kpl_interface *interface;
    uint8_t bytes[];
} kpl_buffer;
```

## Unicode Methods