time_record 124 anacron/gregor.c struct tm time_record; time_record 127 anacron/gregor.c localtime_r (¤t_time, &time_record); time_record 129 anacron/gregor.c switch (time_record.tm_mon) { time_record 131 anacron/gregor.c case 2: return days_in_month[1] + (leap (time_record.tm_year + 1900) ? 1 : 0); time_record 132 anacron/gregor.c default: return days_in_month[time_record.tm_mon - 1]; time_record 140 anacron/gregor.c struct tm time_record; time_record 143 anacron/gregor.c localtime_r (¤t_time, &time_record); time_record 145 anacron/gregor.c switch (time_record.tm_mon) { time_record 146 anacron/gregor.c case 1: return days_in_month[1] + (leap (time_record.tm_year + 1900) ? 1 : 0); time_record 147 anacron/gregor.c default: return days_in_month[time_record.tm_mon]; time_record 155 anacron/gregor.c struct tm time_record; time_record 158 anacron/gregor.c localtime_r (¤t_time, &time_record); time_record 160 anacron/gregor.c if (leap(time_record.tm_year - 1 + 1900)) { time_record 171 anacron/gregor.c struct tm time_record; time_record 174 anacron/gregor.c localtime_r (¤t_time, &time_record); time_record 176 anacron/gregor.c if (leap(time_record.tm_year + 1900)) {