tty-solitaire/lib/stack.h

10 lines
103 B
C
Raw Normal View History

2010-04-04 00:44:59 +00:00
#ifndef STACK_H
#define STACK_H
struct stack {
struct card *card;
struct stack *next;
};
#endif