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

## Unicode Methods