Update readme
This commit is contained in:
parent
a321706d65
commit
527e8b372a
1 changed files with 10 additions and 2 deletions
12
README.md
12
README.md
|
@ -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``
|
||||
|
|
Loading…
Reference in a new issue