Added commenting to cd header file.

This commit is contained in:
Svend Sorensen
2005-03-19 06:08:41 +00:00
parent de79a8f173
commit d3216b08af

View File

@@ -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);
/*