Lines Matching defs:year
28 ** The ISO C and POSIX standards prohibit padding the year,
33 ** For years that are more than four digits we put extra spaces before the year
35 ** a digit within a year and truncating the year (operating on the assumption
75 char year[INT_STRLEN_MAXIMUM(int) + 2];
89 ** Use strftime's %Y to generate the year, to avoid overflow problems
94 strftime(year, sizeof year, "%Y", timeptr);
99 ((strlen(year) <= 4) ? ASCTIME_FMT : ASCTIME_FMT_B),
103 year);