stb style utility for my day to day projects that always makes me reimplement them over and over again.
| Library | Latest Version | Category | LoC | Description |
|---|---|---|---|---|
| rstb_da.h | 1.1 | misc | 166 | Simple to use dynamic array |
| rstb_arena.h | 0.2 | misc | 350 | Simple to use arena (bump) allocator |
The idea of single-header file libraries is that to make easy to use and distribute since all the code contained in single file.
To use it you need to include header file and add macro that specific on that header (each file has it's own docs inside them).
#define RSTB_DA_IMPLEMENTATION
#include "rstb_da.h"