/* date.h */

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

Date* date_interval(const Date *, const Date *);
