Lines Matching defs:month
87 /* 1-based month, 0-based days, cumulative */
263 * numeric month or day (1, 2, 04)
274 int month;
287 /* if no recognizable month, assume wildcard ('*') month */
288 if ((month = getfield(endp, &endp, &flags)) == 0) {
290 month = tp->tm_mon + 1;
293 month = v1;
301 month = v2;
304 month = v1;
309 /* if month is out of range, treat it as '*' */
310 if (month < 1 || month > 12) {
312 month = tp->tm_mon + 1;
324 if (flags & F_ISMONTH && flags & F_WILDDAY && month == tp->tm_mon + 1)
327 if (flags & F_ISMONTH && flags & F_ISDOW && month == tp->tm_mon + 1 &&
333 day = cumdays[month] + day;
364 if (*p == '*') { /* `*' is current month */