aboutsummaryrefslogtreecommitdiff
path: root/stack.c
blob: 1edb5c53e3fbdae172149f4fe331a79c15aca022 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include "stack.h"
#include "structs.h"
#include "error.h"
#include "curses.h" /* Required by error.h */
#include "stdio.h" /* Required by error.h */

PositionStack ps_new(void) {
    PositionStack ps;
    ps.top = 0;
    return ps;
}

int ps_push(PositionStack *ps, Position pos) {
    if (ps->top >= STACK_SIZE) return -1;
    ps->arr[ps->top] = pos;
    ps->top += 1;
    return 0;
}

Position ps_pop(PositionStack *ps) {
    ps->top -= 1;
    return ps->arr[ps->top];
}

Position ps_peek(PositionStack ps) {
    return ps.arr[ps.top - 1];
}