#ifndef DATASTRUCTURE_H_INCLUDED #define DATASTRUCTURE_H_INCLUDED /************************************************************************************************/ /*************************************Objects declaration****************************************/ /************************************************************************************************/ typedef struct sDate{ int day; int month; int year ; } sDate; /************************************************************************************************/ /***********************************functions declaration****************************************/ /************************************************************************************************/ void inputDate(); #endif // DATASTRUCTURE_H_INCLUDED