month 21 include/clock.h extern void set_clock(int year, int month, int day, int hour, int minute, int second); month 44 modules/gui_calendar.c static int calendar_days_in_month(int month, int year) { month 45 modules/gui_calendar.c switch (month) { month 55 modules/gui_calendar.c static int calendar_day_of_week(int day /*1-31*/, int month /*1-12*/, int year) { month 58 modules/gui_calendar.c a = (14 - month) / 12; month 60 modules/gui_calendar.c month += a*12 - 2; month 62 modules/gui_calendar.c return (((7000 + day + year + year/4 - year/100 + year/400 + 31*month/12) % 7) + 6) % 7; month 985 platform/generic/wrappers.c void set_clock(int year, int month, int day, int hour, int minute, int second) month 989 platform/generic/wrappers.c buf[1] = month; month 180 platform/sx210is/shooting.c int month; month 185 platform/sx210is/shooting.c month = ttm->tm_mon + 1; month 186 platform/sx210is/shooting.c sprintf(out, "A/DCIM/%03d___%02d", get_target_dir_num(), month);