summaryrefslogtreecommitdiff
path: root/comp/work/42/rpn/stack.h
blob: 0c78a1043b349eaf4d16254ead33f9cce85239a1 (plain)
1
2
3
4
5
6
7
8
9
10
typedef struct stack {
	int *sp;
	int value;
	int *stack;
} stack;

int pop(stack *stack);
void push(stack *stack, int value);
void deinitstack(stack *stack);
stack *initstack(int value, int size);