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

10 lines
103 B
C

#ifndef STACK_H
#define STACK_H
struct stack {
struct card *card;
struct stack *next;
};
#endif