Listing 3 date.h — a simple date structure

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

Date* date_interval(const Date *, const Date *);
/* End of File */