From ad9d6a199db7c28f8b20f131dfb55a26e0e251de Mon Sep 17 00:00:00 2001 From: Nakidai Date: Sun, 23 Mar 2025 21:11:13 +0300 Subject: Again... --- include/stack.h | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 include/stack.h (limited to 'include/stack.h') diff --git a/include/stack.h b/include/stack.h deleted file mode 100644 index ac17ed3..0000000 --- a/include/stack.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef __CCL_STACK_H__ -#define __CCL_STACK_H__ - -#include "3cl.h" - - -/** - * Push num to the stack - * @param stack Stack where to push - * @param num Number to push - */ -void ccl_stack_push(struct CCLStack *stack, CCLNum num); - -/** - * Pop number from the stack - * @param stack Stack from where to pop - * @return Popped number - */ -CCLNum ccl_stack_pop(struct CCLStack *stack); - -#endif /* __CCL_STACK_H__ */ -- cgit 1.4.1