Guest User

Untitled

a guest
Jan 24th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. struct film
  2. {
  3. char title[TSIZE];
  4. int rating;
  5. };
  6.  
  7. typedef struct film Item;
  8.  
  9. typedef struct node
  10. {
  11. Item item;
  12. struct node * next;
  13. } Node;
  14.  
  15. typedef Node * List;
  16.  
  17. void InitializeList(List * plist);
Add Comment
Please, Sign In to add comment