aboutsummaryrefslogtreecommitdiff
path: root/include/storage.h
diff options
context:
space:
mode:
authorSoikk2022-07-30 17:35:47 +0200
committerSoikk2022-07-30 17:35:47 +0200
commit0e95d2c61da7b7fbce76b0633313128b7440136e (patch)
tree0b48a36d254376848c4b590663f34e7bbefed5ae /include/storage.h
parent272d8a037822e870ffbdfca4bc1df9d973e4de06 (diff)
downloadsoikk-DB-0e95d2c61da7b7fbce76b0633313128b7440136e.tar.xz
soikk-DB-0e95d2c61da7b7fbce76b0633313128b7440136e.tar.zst
added htable delete function
Diffstat (limited to 'include/storage.h')
-rw-r--r--include/storage.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/storage.h b/include/storage.h
index bef740a..ebf2dc2 100644
--- a/include/storage.h
+++ b/include/storage.h
@@ -101,6 +101,8 @@ int htableAdd(htable *ht, uint64_t h);
uint64_t htableSearch(htable *ht, uint64_t h);
+int htableDelete(htable *ht, uint64_t h);
+
// MTABLE
mtable *newMtable(uint64_t size);