summaryrefslogtreecommitdiff
path: root/docs/application/buffer.md
blob: 881fb27f43bbc5a9155f03298ac3773a196b0074 (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_POOL_HEADER(struct _kpl_buffer);
    uint64_t byte_length;
    kpl_interface *interface;
    uint8_t bytes[];
} kpl_buffer;
```

## Unicode Methods