about summary refs log tree commit diff
path: root/usth/ICT2.1/labwork/3/stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.1/labwork/3/stack.h')
-rw-r--r--usth/ICT2.1/labwork/3/stack.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/usth/ICT2.1/labwork/3/stack.h b/usth/ICT2.1/labwork/3/stack.h
new file mode 100644
index 0000000..2ed8851
--- /dev/null
+++ b/usth/ICT2.1/labwork/3/stack.h
@@ -0,0 +1,16 @@
+/*
+ * Stack header.
+ * This is free and unencumbered software released into the public domain.
+ */
+
+#include "construct.h"
+
+typedef struct {
+	construct *stack;
+} stack;
+
+stack *mkstack();
+int stack_empty(stack *);
+void stack_push(stack *, void *);
+void *stack_top(stack *);
+void *stack_pop(stack *);