Lines Matching defs:year
80 * a year when time occurs twice (in the fall) and one local hour a
81 * year when time never occurs (in the spring).
176 int year = tme->tm_year + 1900;
178 if (days_in_year(year) == 366)
181 while (year > 1970) {
182 num_sec += days_in_year(--year) * 24 * 60 * 60;
237 tme->tm_mday == 29)) { /* leap year and February */
248 gettext("day of year out of range (%d)"), tme->tm_yday);
412 * If the year does not begin with '19' or '20', then report
417 (void) sprintf(errbuf, gettext("invalid year (%c%c%c%c)"),
436 tme->tm_year = atoi(strs) - 1900; /* get the year */
490 days_in_year(int year)
492 if (isleap(year))