summaryrefslogtreecommitdiff
path: root/include/kernel/list.h
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-02-16 12:30:49 -0600
committerDanny Holman <dholman@gymli.org>2024-02-16 12:30:49 -0600
commit1d40d14e09c8c22ffbdf5a5cad95ae552587ce53 (patch)
treeab419012553bbbb9b1589aafc8ea865cc9dc7daf /include/kernel/list.h
parent19b5c8699f0d201a8ffe41594d966d143320260d (diff)
include: kernel: move list.h to a data struct directory
Move list.h into a designated directory for data structure definitions. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'include/kernel/list.h')
-rw-r--r--include/kernel/list.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/include/kernel/list.h b/include/kernel/list.h
deleted file mode 100644
index cc78a4f..0000000
--- a/include/kernel/list.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef LIST_H
-#define 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) {
- new->prev = head;
- new->next = head->next;
-
- head->next = new;
- if (head->prev != NULL)
- head->prev->next = new;
-}
-
-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