10 lines
103 B
C
10 lines
103 B
C
#ifndef STACK_H
|
|
#define STACK_H
|
|
|
|
struct stack {
|
|
struct card *card;
|
|
struct stack *next;
|
|
};
|
|
|
|
#endif
|