summaryrefslogtreecommitdiff
path: root/include/libk/data/list.h
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-05-27 13:53:52 -0500
committerDanny Holman <dholman@gymli.org>2024-05-27 13:53:52 -0500
commitaaf7355c5ededfcdc877c7f2989fb1ba02dfb848 (patch)
tree0c4588650fe1fc1fa1af2972353a2bc920cf1e68 /include/libk/data/list.h
parent41cff28f5447b5f669db62ce2a73be98bc5bce37 (diff)
libk: create a subset libc for kernel use
Create a subset of the C library for use inside the kernel. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'include/libk/data/list.h')
-rw-r--r--include/libk/data/list.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/libk/data/list.h b/include/libk/data/list.h
new file mode 100644
index 0000000..69eee3a
--- /dev/null
+++ b/include/libk/data/list.h
@@ -0,0 +1,32 @@
+#ifndef LIBK_LIST_H
+#define LIBK_LIST_H
+
+#include <stddef.h>
+
+struct list_head {
+ struct list_head *next;
+ struct list_head *prev;
+};
+
+static inline void list_add(struct list_head *new, struct list_head *head) {
+ struct list_head *temp = head;
+ while (temp->next != NULL)
+ temp = temp->next;
+
+ temp->next = new;
+ new->prev = temp;
+ new->next = NULL;
+}
+
+static inline void list_del(struct list_head *item) {
+ struct list_head *next = item->next;
+ struct list_head *prev = item->prev;
+ if (next != NULL)
+ next->prev = prev;
+ if (prev != NULL)
+ prev->next = next;
+ item->next = NULL;
+ item->prev = NULL;
+}
+
+#endif