aboutsummaryrefslogtreecommitdiff
path: root/hashtable.h
diff options
context:
space:
mode:
Diffstat (limited to 'hashtable.h')
-rw-r--r--hashtable.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/hashtable.h b/hashtable.h
index 21467a8..5147fa5 100644
--- a/hashtable.h
+++ b/hashtable.h
@@ -5,9 +5,10 @@
struct hashtable;
-struct hashtable* ht_alloc();
+struct hashtable* ht_alloc(void);
void ht_free(struct hashtable *ht);
+// Overwrites if the key already exists in the table.
void ht_insert(struct hashtable *ht, u64 key, void *value);
// Returns NULL if key is not present in the table.