Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 468 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 468 Bytes

Simple generic hashtable

Simplistic and generic hashtable using the Murmur3 hash function and linear probing to resolve collisions, implemented in C99.

For example usage see example.c.

WARNING: this library is a naive implementation and is not yet thoroughly tested. Use at your own risk (possibly better, use a more widely used library e.g. stb_ds or ZPL)