Skip to content

Latest commit

 

History

History
executable file
·
7 lines (4 loc) · 380 Bytes

readme.md

File metadata and controls

executable file
·
7 lines (4 loc) · 380 Bytes

A data structure library for C

This library currently implements a singly linked, two directional list and a simple hash map, which uses a linked list for collision resolving.

Both the linked list and the hash map can store arbitrary data inside them, either basic ones (integer, float) or complex ones, using a void pointer.

See the test.c file for tests and example usage.