tty-solitaire/lib/stack.h
2010-04-04 21:20:38 -03:00

16 lines
279 B
C

#ifndef STACK_H
#define STACK_H
struct stack {
struct card *card;
struct stack *next;
};
void initialize_stack(struct stack **);
bool empty(struct stack *);
int length(struct stack *);
void push(struct stack **, struct card *);
struct stack *pop(struct stack **);
#endif