// Creates a Time struct representing the time difference
// between two events of today
// param e1: Event struct representing the first event
// param e2: Event struct representing the second event
// return: Time struct representing the time between e1 and e2
// TODO: complete the function
struct Time elapsed_time(struct Event e1, struct Event e2) {
struct Time ret;
return ret;
}
Please implement