An open API service indexing awesome lists of open source software.

https://github.com/adrian-bueno/hashtable

Linked Hash Table written in C. Key and value can be of any type.
https://github.com/adrian-bueno/hashtable

c hashtable linked-hashtable

Last synced: 10 months ago
JSON representation

Linked Hash Table written in C. Key and value can be of any type.

Awesome Lists containing this project

README

          

## README ##

Linked Hash Table written in C.

Key and value can be of any type.

Easy to use.

No dependecys.

3 examples of use in "examples" folder.

MIT License.

### Functions ###

Create hash table.

Delete hash table.

Introduce new key-value or modify value.

Get the value associated to a key.

Delete key-value.

Calculate hash value of a string.

Function pointers used to: compare keys, calculate hash value of keys and free allocated memory of keys and values.

** Check hashtable.h for more details.