diff --git a/src/list_handling.c b/src/list_handling.c index fe60124..de8a884 100644 --- a/src/list_handling.c +++ b/src/list_handling.c @@ -46,6 +46,8 @@ void free_list(struct event *head) } } +// print_upcoming() also prints ongoing events +// because you usually also want to see those void print_upcoming(struct event *head, char current_date[], int show_all_events) { int i = 0; while (head != NULL) {