aboutsummaryrefslogtreecommitdiff
path: root/libc/stack.c
diff options
context:
space:
mode:
authorMarvin Borner2021-01-21 14:40:20 +0100
committerMarvin Borner2021-01-21 14:40:20 +0100
commit7442dc40a12bd61d6a77fafbc1ea031a2b51937a (patch)
treeda42e944ce1865c6483df14b04e55129af0d7b3a /libc/stack.c
parent64ccbef99bdadc816e8c756ca8b5ae9a148a47fd (diff)
Fixed stray keyboard characters
Diffstat (limited to 'libc/stack.c')
-rw-r--r--libc/stack.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/stack.c b/libc/stack.c
index dac18a2..c47dd59 100644
--- a/libc/stack.c
+++ b/libc/stack.c
@@ -117,3 +117,9 @@ void *stack_peek(struct stack *stack)
return stack->tail;
}
+
+void stack_clear(struct stack *stack)
+{
+ while (stack_pop(stack))
+ ;
+}