Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. //modulo item.h
  2. typedef void *Item;
  3. typedef struct song *Song;
  4.  
  5. Item inputItem();
  6. void outputItem(Item);
  7. int cmpItem(Item,Item);
  8. void delete_memory(Item);
  9. Item cloneItem(Item);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement