tty-solitaire/lib/deck.h
2011-05-29 17:12:52 -03:00

18 lines
292 B
C

#ifndef DECK_H
#define DECK_H
#include "stack.h"
struct deck {
struct stack *stock;
struct stack *waste_pile;
struct stack *foundation[4];
struct stack *maneuvre[7];
};
void allocate_deck(struct deck **);
void initialize_deck(struct deck *);
void free_deck(struct deck *);
#endif