delete() for all structures.

This commit is contained in:
Murilo Soares Pereira
2010-04-06 21:59:21 -03:00
parent ecaa2a4c68
commit 90c7ce6280
5 changed files with 36 additions and 2 deletions

View File

@@ -22,6 +22,7 @@ struct deck {
void allocate_deck(struct deck **);
void initialize_deck(struct deck *);
//void delete_deck(struct deck *);
void delete_deck(struct deck *);
void shuffle_deck(struct deck *);
#endif