Update readme

This commit is contained in:
XOR 2023-04-07 01:42:32 +02:00
parent a321706d65
commit 527e8b372a

View file

@ -1,3 +1,11 @@
# simple_hashtable
# SHASH
A simple hash table library written in C
A **s**imple **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``