Advertisement
lukusm

Untitled

Jan 16th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. void deleteBookList(book_list* b1) {
  2.     book* tmp;
  3.     do {
  4.         tmp=b1->first;
  5.         b1->first=b1->first->next;
  6.         deleteBook(tmp);
  7.     } while(b1->first!=b1->last);
  8.     delete(b1->first);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement