aboutsummaryrefslogtreecommitdiff
path: root/lib/inc/list.h
diff options
context:
space:
mode:
authorMarvin Borner2020-08-13 21:27:19 +0200
committerMarvin Borner2020-08-13 21:27:19 +0200
commitf540d4f3d3e6eeac98891da9326dfca6f472960a (patch)
tree9020e305f8b48d63f616c5f730663eb61a8a5574 /lib/inc/list.h
parent54ece9141e9ad8cfb59f2c8315c84b8e247275f7 (diff)
Added basic list lib
Diffstat (limited to 'lib/inc/list.h')
-rw-r--r--lib/inc/list.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/inc/list.h b/lib/inc/list.h
new file mode 100644
index 0000000..5deaf59
--- /dev/null
+++ b/lib/inc/list.h
@@ -0,0 +1,25 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#ifndef LIST_H
+#define LIST_H
+
+#include <def.h>
+
+struct list {
+ struct node *head;
+};
+
+struct node {
+ void *data;
+ int nonce;
+ struct node *next;
+ struct node *prev;
+};
+
+struct list *list_new();
+/* struct node *list_new_node(); */ // TODO: Make node-specific things static/private?
+/* void list_add_node(struct list *list, struct node *node); */
+void list_add(struct list *list, void *data);
+void list_remove(struct list *list, struct node *node);
+
+#endif