Newer
Older
#define MAXSONGS 3
#define MAXCDS 100
/************************************************************************************************/
/*************************************Objects declaration****************************************/
/************************************************************************************************/
typedef struct sDate{
int day;
int month;
int year ;
} sDate;
unsigned int seconds;
unsigned int minutes;
unsigned int hours;
typedef struct sCD{
char* title;
char* artist;
unsigned int publicationYear;
unsigned int numberOfSongs;
sSong Songs[MAXSONGS];
} sCD;
/************************************************************************************************/
/***********************************functions declaration****************************************/
/************************************************************************************************/
void inputDate();
/************************************************************************************************/
/***********************************Externvariables****************************************/
/************************************************************************************************/