Implemented function to shuffle the deck.

This commit is contained in:
Murilo Soares Pereira
2010-04-08 22:33:26 -03:00
parent b94341b70d
commit e6a8651fb2
2 changed files with 30 additions and 0 deletions

View File

@@ -26,5 +26,6 @@ void allocate_deck(struct deck **);
void initialize_deck(struct deck *);
void delete_deck(struct deck *);
void fill_deck(struct deck *);
void shuffle_deck(struct deck *);
#endif