Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 246 Bytes

README.md

File metadata and controls

8 lines (8 loc) · 246 Bytes

Bare-bones data structures in C.

Includes the following data structures:

  • Array (array.h, array.c)
  • Dictionary (dictionary.h, dictionary.c)
  • Heap (heap.h, heap.c)
  • Doubly Linked List (list.h, list.c)
  • Circular Buffer (ring.h, ring.c)