A Data Structure used for storing memory.
- Very fast
- Cannot free added data, must clear the entire arena
struct arena {
uint8_t *offset;
void *data;
size_t capacity;
}A Data Structure used for storing memory.
struct arena {
uint8_t *offset;
void *data;
size_t capacity;
}