Better style for stack#free_stack.

This commit is contained in:
Murilo Pereira 2011-05-08 01:22:26 -03:00
parent e7706dfa4b
commit f48a3cee38

View File

@ -44,16 +44,13 @@ struct stack *duplicate_stack(struct stack *stack) {
}
void free_stack(struct stack *stack) {
struct stack *tmp_stack;
struct stack *tmp;
while (stack) {
tmp_stack = stack->next;
for (; stack; stack = tmp) {
tmp = stack->next;
free_card(stack->card);
free(stack);
stack = tmp_stack;
}
return;
}
bool empty(struct stack *stack) {