Added stack files, with push().

This commit is contained in:
Murilo Soares Pereira
2010-04-04 21:20:36 -03:00
parent be38f63822
commit 4bb10a54cc
2 changed files with 54 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef STACK_H
#define STACK_H
struct stack {
struct card *card;
struct stack *next;
};
#endif