summaryrefslogtreecommitdiff
path: root/src/base/index.h
diff options
context:
space:
mode:
authorConnor Thomson <blumatrikz@gmail.com>2026-09-08 18:27:39 -0700
committerConnor Thomson <blumatrikz@gmail.com>2026-09-08 18:27:39 -0700
commitf1ddc12b68b4e4c8087962de25260470e6df2bea (patch)
tree7d0440a6402a9b0ef75ded23fa64b68534255bba /src/base/index.h
parent6025860a61386bf767b29c3ec5fd0d31285f1056 (diff)
Add tuxanci2 files
Diffstat (limited to 'src/base/index.h')
-rw-r--r--src/base/index.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/base/index.h b/src/base/index.h
deleted file mode 100644
index 4bb1c1b..0000000
--- a/src/base/index.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef INDEX_H
-#define INDEX_H
-
-#include "main.h"
-#include "list.h"
-
-typedef struct index_item_struct {
- int key;
- void *data;
-} index_item_t;
-
-extern list_t *index_new();
-extern void index_add(list_t *list, int key, void *data);
-extern void *index_get(list_t *list, int key);
-extern void index_del(list_t *list, int key);
-extern void index_del_with_object(list_t *list, int key, void *f);
-extern void index_action(list_t *list, void *f);
-extern void index_destroy(list_t *list);
-extern void index_destroyWithObject(list_t *list, void *f);
-
-#endif /* INDEX_H */