summary refs log tree commit diff
path: root/include/stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/stack.h')
-rw-r--r--include/stack.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/stack.h b/include/stack.h
new file mode 100644
index 0000000..27cc2f0
--- /dev/null
+++ b/include/stack.h
@@ -0,0 +1,9 @@
+#ifndef __CCL_STACK_H__
+#define __CCL_STACK_H__
+
+#include "3cl.h"
+
+void ccl_stack_push(struct CCLStack *stack, CCLNum num);
+CCLNum ccl_stack_pop(struct CCLStack *stack);
+
+#endif /* __CCL_STACK_H__ */