From 2b0e05cbc1e4d9beccd3a5867c8730880f6ecc10 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Fri, 23 Aug 2024 20:43:31 +0300 Subject: Start to rewriting code Since there's some UB in the master I decided to rewrite code from scratch again. I hope that attempt will be better :D --- include/stack.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/stack.h (limited to 'include/stack.h') 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__ */ -- cgit 1.4.1