delete() for all structures.

This commit is contained in:
Murilo Soares Pereira
2010-04-08 01:11:10 -03:00
parent ecaa2a4c68
commit 90c7ce6280
5 changed files with 36 additions and 2 deletions
+1
View File
@@ -10,6 +10,7 @@ struct stack {
void allocate_stack(struct stack **);
void initialize_stack(struct stack *);
void delete_stack(struct stack *);
bool empty(struct stack *);
int length(struct stack *);
void push(struct stack **, struct card *);