Added stack files, with push().
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#ifndef STACK_H
|
||||
#define STACK_H
|
||||
|
||||
struct stack {
|
||||
struct card *card;
|
||||
struct stack *next;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user