Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. //modulo song.h
  2. typedef struct song *Song;
  3.  
  4. Song new_song(char*,char*,unsigned int);
  5. char *title_song(Song);
  6. char *name_band(Song);
  7. unsigned int time_song(Song);
  8. void print_song(Song);
  9. void free_song(Song);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement