Lines Matching defs:year
31 ** is undefined when the year is less than 1000 or greater than 9999.
35 ** For years that are more than four digits we put extra spaces before the year
37 ** a digit within a year and truncating the year (operating on the assumption
89 char year[INT_STRLEN_MAXIMUM(int) + 2];
103 ** Use strftime's %Y to generate the year, to avoid overflow problems
108 strftime(year, sizeof year, "%Y", timeptr);
113 ((strlen(year) <= 4) ? ASCTIME_FMT : ASCTIME_FMT_B),
117 year);