aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/stack.h
diff options
context:
space:
mode:
authorMarvin Borner2021-01-10 16:52:06 +0100
committerMarvin Borner2021-01-10 17:07:29 +0100
commit856b362a4b68d5776ea37dc30a50e7414288d877 (patch)
treefab26d13a1495e49d7adeda68fc71bd3ae566825 /libc/inc/stack.h
parent3619c820f8ff5918cf122a031bde6305d32f6528 (diff)
Added very simple stack implementation for procfs
This probably has several bugs, but idc
Diffstat (limited to 'libc/inc/stack.h')
-rw-r--r--libc/inc/stack.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/libc/inc/stack.h b/libc/inc/stack.h
new file mode 100644
index 0000000..8fec25f
--- /dev/null
+++ b/libc/inc/stack.h
@@ -0,0 +1,27 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
+#ifndef STACK_H
+#define STACK_H
+
+#include <def.h>
+
+struct stack_node {
+ void *data;
+ int nonce;
+ struct stack_node *next;
+ struct stack_node *prev;
+};
+
+struct stack {
+ struct stack_node *tail;
+};
+
+struct stack *stack_new();
+void stack_destroy(struct stack *stack);
+u32 stack_empty(struct stack *stack);
+u32 stack_push_bot(struct stack *stack, void *data);
+u32 stack_push(struct stack *stack, void *data);
+void *stack_pop(struct stack *stack);
+void *stack_peek(struct stack *stack);
+
+#endif