uthash

C macros for hash tables, linked lists, and dynamic arrays

brewmacoslinux
Try with needOr install directly
Source

About

C macros for hash tables and more

Commands

uthash

Examples

Include uthash header in C program for hash table operations$ #include <uthash.h>
Create a hash table structure with uthash macros$ HASH_ADD_STR(users, username, user); // Add entry to hash table
Look up an entry in the hash table$ HASH_FIND_STR(users, "john", user); // Find entry by key