#ifndef DATE_H #define DATE_H typedef struct { int month; int day; int year; } Date; #endif