tty-solitaire/lib/deck.h

18 lines
292 B
C
Raw Normal View History

#ifndef DECK_H
#define DECK_H
#include "stack.h"
struct deck {
struct stack *stock;
2010-04-09 03:12:06 +00:00
struct stack *waste_pile;
struct stack *foundation[4];
struct stack *maneuvre[7];
};
void allocate_deck(struct deck **);
void initialize_deck(struct deck *);
2011-02-14 02:10:47 +00:00
void free_deck(struct deck *);
#endif