diff options
author | Hampus <hampus@hampusmat.com> | 2021-12-14 00:01:35 +0100 |
---|---|---|
committer | Hampus <hampus@hampusmat.com> | 2021-12-14 00:01:35 +0100 |
commit | 88d8be06f3e5411db6faa59db12210b6079f7d21 (patch) | |
tree | 8e05fca5d76cb8734fc30e50297471ca72cdaa20 /position_stack.h | |
parent | af93edd8433634d82e855e9c9bcbca249a476977 (diff) |
refactor: restructure project
Diffstat (limited to 'position_stack.h')
-rw-r--r-- | position_stack.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/position_stack.h b/position_stack.h deleted file mode 100644 index fe93e8c..0000000 --- a/position_stack.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef POSITION_STACK_H -#define POSITION_STACK_H - -#define STACK_ERR_OVERFLOW 0xFFF01 -#define STACK_ERR_UNDERFLOW 0xFFF02 - -struct Position -{ - int x; - int y; -}; - -struct PositionStack -{ - int max_size; - int top; - struct Position *items; -}; - -struct PositionStack *create_pos_stack(int capacity); - -void pos_stack_push(struct PositionStack *stack_pt, struct Position pos); - -struct Position pos_stack_peek(struct PositionStack *stack_pt); - -struct Position pos_stack_pop(struct PositionStack *stack_pt); - -#endif
\ No newline at end of file |