summaryrefslogtreecommitdiff
path: root/src/lib/utils.h
diff options
context:
space:
mode:
authorbpc2003 <wpesfriendnva@gmail.com>2025-04-24 17:08:08 -0400
committerbpc2003 <wpesfriendnva@gmail.com>2025-04-24 17:08:08 -0400
commit2b7a3a815fb5d0b5155deec5f613730e898e4100 (patch)
tree00db87ef554335e1c9871330703d86d0247a4ee8 /src/lib/utils.h
parent5b0d930e9e2605add559a70591573ffaa2fd8404 (diff)
Update Documentation
Diffstat (limited to 'src/lib/utils.h')
-rw-r--r--src/lib/utils.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/lib/utils.h b/src/lib/utils.h
deleted file mode 100644
index 99a8efa..0000000
--- a/src/lib/utils.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef UTILS_H
-#define UTILS_H
-
-#include "mdb.h"
-
-// dellist: deletes the provided table
-void dellist(tablist_t *list);
-
-/* hash: calculates the DJB2 hash of a string,
- * and returns that mod TABLEN */
-int hash(char *str);
-
-// copytab: copys table src into table dst
-tablist_t *copytab(tablist_t *dst, tablist_t *src);
-
-#endif