diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-03 13:23:44 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-03 13:23:44 +0100 |
commit | 416d009ffaead754fc13bd6f2093f6c65c17fa95 (patch) | |
tree | 0e6471f6477588f6b4cd365f049cb0746c9bcee1 /src/hashtable.h | |
parent | Initial commit (diff) | |
download | c-hashtable-416d009ffaead754fc13bd6f2093f6c65c17fa95.tar.gz c-hashtable-416d009ffaead754fc13bd6f2093f6c65c17fa95.tar.bz2 c-hashtable-416d009ffaead754fc13bd6f2093f6c65c17fa95.zip |
Kind of works~
Diffstat (limited to 'src/hashtable.h')
-rw-r--r-- | src/hashtable.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/hashtable.h b/src/hashtable.h index 2a31204..5bdcb08 100644 --- a/src/hashtable.h +++ b/src/hashtable.h @@ -7,8 +7,10 @@ HashTable hashtable_init(); int hashtable_deinit(HashTable*); -int hashtable_put(HashTable, char, void*); +int hashtable_put(HashTable, char*, void*); -void* hashtable_get(HashTable, char); +int hashtable_remove(HashTable, char*); + +void* hashtable_get(HashTable, char*); #endif |