diff --git a/lib/cd.h b/lib/cd.h index 290f081..7f0c99d 100644 --- a/lib/cd.h +++ b/lib/cd.h @@ -72,10 +72,16 @@ enum DataType { DATA_ZERO }; +/* ADTs */ typedef struct Cd Cd; typedef struct Track Track; +/* return pointer to CD structure */ Cd *cd_init (); + +/* dump all info from CD structure + * in human readable format (for debugging + */ void cd_dump (Cd *cd); /*