summaryrefslogtreecommitdiff
path: root/include/libk/data/list.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-01-12PROJECT RESTRUCTURINGDanny Holman1-32/+0
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 <dholman@gymli.org>
2024-05-27libk: create a subset libc for kernel useDanny Holman1-2/+2
Create a subset of the C library for use inside the kernel. Signed-off-by: Danny Holman <dholman@gymli.org>
2024-02-16include: kernel: move list.h to a data struct directoryDanny Holman1-7/+8
Move list.h into a designated directory for data structure definitions. Signed-off-by: Danny Holman <dholman@gymli.org>
2023-11-26kernel: list: add a linked-list implementationDanny Holman1-0/+31
Add a linked-list implementation using the kmalloc system. Signed-off-by: Danny Holman <dholman@gymli.org>