summaryrefslogtreecommitdiff
path: root/inc/stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/stack.h')
-rw-r--r--inc/stack.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/inc/stack.h b/inc/stack.h
new file mode 100644
index 0000000..60d41b8
--- /dev/null
+++ b/inc/stack.h
@@ -0,0 +1,10 @@
+#ifndef __STACK_H__
+#define __STACK_H__
+
+void stackPush(int val);
+int stackPop(void);
+int stackIsEmpty(void);
+int stackPeek(void);
+void stackPrint(void);
+
+#endif