From 95cd78840f0891e60f5ebecc8a8eb4fbaf3c2ebf Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Sun, 12 Jan 2025 01:17:36 -0600 Subject: PROJECT RESTRUCTURING Move the entire kernel into its own directory. Create new directories for system commands, libraries and other required essentials for a complete Unix-like operating system. Signed-off-by: Danny Holman --- include/libk/data/list.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 include/libk/data/list.h (limited to 'include/libk/data/list.h') diff --git a/include/libk/data/list.h b/include/libk/data/list.h deleted file mode 100644 index 69eee3a..0000000 --- a/include/libk/data/list.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef LIBK_LIST_H -#define LIBK_LIST_H - -#include - -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 -- cgit v1.2.3