C/C++ Arena

Write a memory allocator

See what malloc does underneath. A bump allocator with alignment, then a fixed-size pool allocator built on a free list.

Milestones

  1. Bump allocator
  2. Alignment
  3. A pool with a free list
  4. Safety checks