#include #include int helper_get_weekday(const struct tm *time_struct) { int wday_sun_sat = time_struct->tm_wday; int wday_mon_sun = (wday_sun_sat + 6) % 7; return wday_mon_sun; }