mirror of
https://github.com/torje/C_crash_course.git
synced 2025-05-22 16:22:07 +02:00
Containers in basic C
Simple implementations of useful datastructures.
Buffer
Wrapping up pointers and capacity, managing allocation and freeing of memory. Provides little else than memory management.
Array
Using the Buffer from above and adds 2 new concepts, how much of the space allocated is used, and how large the data is.