Skip to content
Snippets Groups Projects
datastructure.h 947 B
Newer Older
Wadi.T's avatar
Wadi.T committed
#ifndef DATASTRUCTURE_H_INCLUDED
#define DATASTRUCTURE_H_INCLUDED


/************************************************************************************************/
/*************************************Objects declaration****************************************/
/************************************************************************************************/

typedef struct sDate{
  int day;
  int month;
  int year ;
} sDate;

typedef struct sTime{
  int seconds;
  int minutes;
  int hours;
} sTime;

typedef struct sSong{
  char* Title; 
  char* Artist;  
  sTime duration;
} sSong;
Wadi.T's avatar
Wadi.T committed
/************************************************************************************************/
/***********************************functions declaration****************************************/
/************************************************************************************************/

void inputDate();



#endif // DATASTRUCTURE_H_INCLUDED