diff options
author | Rasmus Luha <rasmus.luha@gmail.com> | 2022-10-22 02:45:34 +0300 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@gmail.com> | 2022-10-22 02:45:34 +0300 |
commit | fcb9ff2b96de6989e9a676e96753b1b1279acf67 (patch) | |
tree | e9a8839939aac6eeba3dea89ca0c20ad8268150e /test/stack.h | |
parent | a97b362e6a35be4575f7ded3c31cdeede89ab2a8 (diff) |
hw3 status
Diffstat (limited to 'test/stack.h')
-rw-r--r-- | test/stack.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/stack.h b/test/stack.h new file mode 100644 index 0000000..8bb1539 --- /dev/null +++ b/test/stack.h @@ -0,0 +1,18 @@ +#ifndef __STACK_H__ +#define __STACK_H__ + +#define STACK_SIZE 100 + +struct stack_st { + int len; + int size; + int* arr; +}; + +void stackPush(int val); +int stackPop(void); +int stackIsEmpty(void); +int stackPeek(void); +void stackPrint(void); + +#endif |