summary refs log tree commit diff
path: root/src/hashtable.h
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-03 13:23:44 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-03 13:23:44 +0100
commit416d009ffaead754fc13bd6f2093f6c65c17fa95 (patch)
tree0e6471f6477588f6b4cd365f049cb0746c9bcee1 /src/hashtable.h
parentInitial commit (diff)
downloadc-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.h6
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