rhi Implementation of linear probing hash table using LCFS hashing This library is a C implementation of set and map data structure with raw pointer-type key and value. Features (...) Usage (...) struct rhis* set = rhis_set(hash, equal, RHI_SHRINK|RHI_EXTED); if( rhis_search(set, "Hello") ) printf("Hello World");