summaryrefslogtreecommitdiff
path: root/include/htab.h
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-07-18 09:43:42 +0530
committersinanmohd <sinan@sinanmohd.com>2024-07-18 15:41:54 +0530
commitf881fe7d158287b25381a90760fd441e7dff7a65 (patch)
treec37cdf708861c308f68247bd16d79cebdc9a4786 /include/htab.h
parentb74181d58756abf951469b39ebad3a23366f0c8f (diff)
queue: switch to uthash
Diffstat (limited to 'include/htab.h')
-rw-r--r--include/htab.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/htab.h b/include/htab.h
deleted file mode 100644
index 7ea1730..0000000
--- a/include/htab.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <search.h>
-
-#ifndef HTAB_H
-
-struct htab {
- struct hsearch_data *table;
- char **keys;
- size_t keys_size, key_filled;
-};
-
-void htab_free(struct htab *htab);
-int htab_init(size_t nel, struct htab **htab);
-int htab_delete(struct htab *htab, const char *key);
-int htab_enter(struct htab *htab, const char *key, void *data);
-int htab_search(struct htab *htab, char *key, ENTRY **ep);
-
-#define HTAB_H
-#endif