aboutsummaryrefslogtreecommitdiff
path: root/src/hash_table.c
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2024-12-27 20:05:06 -0800
committerPreston Pan <ret2pop@gmail.com>2024-12-27 20:05:06 -0800
commit63f11aaec8d21844a07fd27003a992c102a3a297 (patch)
tree6240a2c8561642d0c1d0b95148d6c868c7855a4a /src/hash_table.c
parentfd14f6fbf8206589d2a0ad8f0793845cb8faf1d7 (diff)
make directory structure for client
Diffstat (limited to 'src/hash_table.c')
-rw-r--r--src/hash_table.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/hash_table.c b/src/hash_table.c
deleted file mode 100644
index cced194..0000000
--- a/src/hash_table.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <hash_table.h>
-#include <stdlib.h>
-#include <helpers.h>
-
-ht_t *init_ht(size_t size) {
- ht_t *ht = safe_calloc(1, sizeof(size));
- size_t realsize = size == 0 ? DEFAULT_HT_SIZE : size;
- ht->buckets = safe_calloc(realsize, sizeof(sll_t *));
- ht->size = realsize;
- return ht;
-}