Home | History | Annotate | Download | only in tzcode

Lines Matching defs:year

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