aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/list.h
diff options
context:
space:
mode:
authorMarvin Borner2021-03-26 21:55:50 +0100
committerMarvin Borner2021-03-26 22:02:20 +0100
commit05498860e8f7b1e8bb27880bc7526de026694804 (patch)
tree3bddf16e9439a950a3810d45e42a5cefdbcb7663 /libs/libc/inc/list.h
parenta96e9c4c858d47f61b89d879aa0ce6a02bdacb38 (diff)
Renamed libs
Cleaner and more flexible.
Diffstat (limited to 'libs/libc/inc/list.h')
-rw-r--r--libs/libc/inc/list.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/libs/libc/inc/list.h b/libs/libc/inc/list.h
new file mode 100644
index 0000000..0b82b48
--- /dev/null
+++ b/libs/libc/inc/list.h
@@ -0,0 +1,29 @@
+// 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(void);
+void list_destroy(struct list *list);
+/* struct node *list_new_node(); */ // TODO: Make node-specific things static/private?
+/* void list_add_node(struct list *list, struct node *node); */
+struct node *list_add(struct list *list, void *data);
+struct list *list_remove(struct list *list, struct node *node);
+struct node *list_last(struct list *list);
+struct list *list_swap(struct list *list, struct node *a, struct node *b);
+struct node *list_first_data(struct list *list, void *data);
+
+#endif