#define MAX_BUF 80

typedef struct {
	char name[MAX_BUF + 1];
	char address[MAX_BUF + 1];
	int  year, month, day;
} t_person_info;
