From fcb9ff2b96de6989e9a676e96753b1b1279acf67 Mon Sep 17 00:00:00 2001 From: Rasmus Luha Date: Sat, 22 Oct 2022 02:45:34 +0300 Subject: hw3 status --- inc/stack.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'inc/stack.h') diff --git a/inc/stack.h b/inc/stack.h index 60d41b8..fcc976a 100644 --- a/inc/stack.h +++ b/inc/stack.h @@ -1,6 +1,13 @@ #ifndef __STACK_H__ #define __STACK_H__ +#define STACK_SIZE 100 + +struct stack_st { + int len; + int arr[STACK_SIZE]; +}; + void stackPush(int val); int stackPop(void); int stackIsEmpty(void); -- cgit v1.2.3