A portable hash map in C

Salmagundi is a small, portable linear-probing hash map in C that allows for quick and efficient hash mapping in your code. By including the necessary header files and functions, users can easily store and retrieve key-value pairs using this library. The code snippet provided demonstrates how to create a map, store values, retrieve values, and close the map when finished. It also includes various assertions to ensure the accuracy of the stored data. The use of rapidhash hashing and string comparison make Salmagundi a powerful tool for C developers. No controversial information provided.

https://github.com/e-dant/salmagundi

To top