Advertisement
lukusm

Untitled

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