/* the meal header */
#define MSIZE 25

typedef enum 
{SOFTDRINK, JUICE, COFFEE, MILK, ALCOHOL}
DRINK;

typedef struct {
	DRINK drink;
	char food[MSIZE];
	int calories;
	} MEAL;

typedef struct {
	MEAL breakfast;
	MEAL lunch;
	MEAL dinner;
	int total_calories;
	} DAYS_INTAKE;



