Lines Matching +full:apr +full:- +full:domain
4 ** This file is in the public domain, so clarified as of
5 ** 1996-06-05 by Arthur David Olson.
23 ** ??? ???-2147483648 -2147483648:-2147483648:-2147483648 -2147483648\n
24 ** (two three-character abbreviations, five strings denoting integers,
33 /* On pre-C99 platforms, a snprintf substitute good enough for us. */
72 "Jan", "Feb", "Mar", "Apr", "May", "Jun", in asctime_r()
85 POSIX.1-2017 and earlier. */ in asctime_r()
89 if (timeptr->tm_wday < 0 || timeptr->tm_wday >= DAYSPERWEEK) in asctime_r()
91 else wn = wday_name[timeptr->tm_wday]; in asctime_r()
92 if (timeptr->tm_mon < 0 || timeptr->tm_mon >= MONSPERYEAR) in asctime_r()
94 else mn = mon_name[timeptr->tm_mon]; in asctime_r()
96 year = timeptr->tm_year; in asctime_r()
97 mday = timeptr->tm_mday; in asctime_r()
98 hour = timeptr->tm_hour; in asctime_r()
99 min = timeptr->tm_min; in asctime_r()
100 sec = timeptr->tm_sec; in asctime_r()
115 if ((year <= LONG_MAX - TM_YEAR_BASE in asctime_r()
117 ((-999 - TM_YEAR_BASE <= year in asctime_r()
118 && year <= 9999 - TM_YEAR_BASE) in asctime_r()