summaryrefslogtreecommitdiff
path: root/docs/application/union.md
blob: 3626f1cde25de6d464f431f7057a976595ebb84e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Union

---

## Object Definitions

```c
typedef struct _kpl_union {
    KPL_SLAB_HEADER(strcut _kpl_union);
    kpl_class class;
    uint32_t tag;
} kpl_union;
```