Home | History | Annotate | Download | only in tzcode

Lines Matching refs:year

38 ** The ISO C 1999 and POSIX 1003.1-2004 standards prohibit padding the year,
47 ** For years that are more than four digits we put extra spaces before the year
49 ** a digit within a year and truncating the year (operating on the assumption
91 char year[INT_STRLEN_MAXIMUM(int) + 2];
101 ** Use strftime's %Y to generate the year, to avoid overflow problems
106 (void) strftime(year, sizeof year, "%Y", timeptr);
111 ((strlen(year) <= 4) ? ASCTIME_FMT : ASCTIME_FMT_B),
115 year);