Lines Matching defs:year
49 static int holidays[NHOLIDAYS]; /* holidays file day-of-year table */
192 int doy; /* day of the year */
212 else if(++line == 1) { /* format: year p-start np-start */
222 /* validate year */
224 fprintf(stderr, "pnpsplit: invalid year: %d\n",
330 /* set day of year from month and day */
333 day_of_year(year, month, day)
337 leap = year%4 == 0 && year%100 || year%400 == 0;