Added commenting to cd header file.
This commit is contained in:
6
lib/cd.h
6
lib/cd.h
@@ -72,10 +72,16 @@ enum DataType {
|
|||||||
DATA_ZERO
|
DATA_ZERO
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* ADTs */
|
||||||
typedef struct Cd Cd;
|
typedef struct Cd Cd;
|
||||||
typedef struct Track Track;
|
typedef struct Track Track;
|
||||||
|
|
||||||
|
/* return pointer to CD structure */
|
||||||
Cd *cd_init ();
|
Cd *cd_init ();
|
||||||
|
|
||||||
|
/* dump all info from CD structure
|
||||||
|
* in human readable format (for debugging
|
||||||
|
*/
|
||||||
void cd_dump (Cd *cd);
|
void cd_dump (Cd *cd);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user