A simple hash table library written in C
.clang-format | ||
.gitignore | ||
COPYING | ||
README.md | ||
shash.c | ||
shash.h | ||
usage_example.c |
SHASH
A simple hash table library written in C
This hashtable library stores pointers to any type of data, and can therefore be used on almost anything you would want to store. It is meant to be simple, and therefore does not have fancy functions like resizing of the table (Which would require a whole recomputation of the table in the current implementation).
You can see a example usage for storing strings in the usage_example.c
file.
You can see all avaible functions in shash.h
Note that this library underlies the GNU General Public License as specifed in COPYING