summaryrefslogtreecommitdiff
path: root/include/htab.h
diff options
context:
space:
mode:
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