diff options
| author | Soikk | 2022-07-30 17:35:47 +0200 |
|---|---|---|
| committer | Soikk | 2022-07-30 17:35:47 +0200 |
| commit | 0e95d2c61da7b7fbce76b0633313128b7440136e (patch) | |
| tree | 0b48a36d254376848c4b590663f34e7bbefed5ae /include/storage.h | |
| parent | 272d8a037822e870ffbdfca4bc1df9d973e4de06 (diff) | |
| download | soikk-DB-0e95d2c61da7b7fbce76b0633313128b7440136e.tar.xz soikk-DB-0e95d2c61da7b7fbce76b0633313128b7440136e.tar.zst | |
added htable delete function
Diffstat (limited to 'include/storage.h')
| -rw-r--r-- | include/storage.h | 2 |
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); |
