1988-02-17 20:07:35 -05:00
|
|
|
#ifndef lint
|
|
|
|
|
#ifndef NOID
|
1988-02-18 04:31:35 -05:00
|
|
|
static char elsieid[] = "%W%";
|
1988-02-17 20:07:35 -05:00
|
|
|
#endif /* !defined NOID */
|
|
|
|
|
#endif /* !defined lint */
|
1986-12-31 14:22:18 -05:00
|
|
|
|
1988-02-18 04:31:35 -05:00
|
|
|
/*LINTLIBRARY*/
|
|
|
|
|
|
1989-03-21 11:37:00 -05:00
|
|
|
#include "private.h"
|
1986-12-31 16:13:33 -05:00
|
|
|
#include "tzfile.h"
|
1986-12-31 14:22:18 -05:00
|
|
|
|
|
|
|
|
/*
|
1989-03-18 20:35:08 -05:00
|
|
|
** A la X3J11, with core dump avoidance.
|
1986-12-31 14:22:18 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
asctime(timeptr)
|
1988-02-16 22:44:07 -05:00
|
|
|
register const struct tm * timeptr;
|
1986-12-31 14:22:18 -05:00
|
|
|
{
|
1988-02-27 19:16:47 -05:00
|
|
|
static const char wday_name[DAYSPERWEEK][3] = {
|
1986-12-31 14:22:18 -05:00
|
|
|
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
|
|
|
|
|
};
|
1988-02-27 19:16:47 -05:00
|
|
|
static const char mon_name[MONSPERYEAR][3] = {
|
1986-12-31 14:22:18 -05:00
|
|
|
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
|
|
|
|
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
|
|
|
|
|
};
|
1992-12-01 15:41:33 -05:00
|
|
|
/*
|
1993-05-29 20:21:14 -04:00
|
|
|
** Big enough for something such as
|
1992-12-01 15:41:33 -05:00
|
|
|
** ??? ???-2147483648 -2147483648:-2147483648:-2147483648 -2147483648\n
|
1993-05-29 20:21:14 -04:00
|
|
|
** (two three-character abbreviations, five strings denoting integers,
|
1992-12-01 15:41:33 -05:00
|
|
|
** three explicit spaces, two explicit colons, a newline,
|
1993-05-29 20:21:14 -04:00
|
|
|
** and a trailing ASCII nul).
|
1992-12-01 15:41:33 -05:00
|
|
|
*/
|
1993-05-29 20:21:14 -04:00
|
|
|
static char result[3 * 2 + 5 * INT_STRLEN_MAXIMUM +
|
|
|
|
|
3 + 2 + 1 + 1];
|
1989-03-21 11:37:00 -05:00
|
|
|
register const char * wn;
|
|
|
|
|
register const char * mn;
|
1986-12-31 14:22:18 -05:00
|
|
|
|
1989-03-18 20:35:08 -05:00
|
|
|
if (timeptr->tm_wday < 0 || timeptr->tm_wday >= DAYSPERWEEK)
|
|
|
|
|
wn = "???";
|
|
|
|
|
else wn = wday_name[timeptr->tm_wday];
|
|
|
|
|
if (timeptr->tm_mon < 0 || timeptr->tm_mon >= MONSPERYEAR)
|
|
|
|
|
mn = "???";
|
|
|
|
|
else mn = mon_name[timeptr->tm_mon];
|
1992-12-01 15:41:33 -05:00
|
|
|
/*
|
|
|
|
|
** The X3J11-suggested format is
|
|
|
|
|
** "%.3s %.3s%3d %02.2d:%02.2d:%02.2d %d\n"
|
|
|
|
|
** but, given the way we've set wn and mn, the .3's are superfluous.
|
|
|
|
|
** Meanwhile, the .2 in 02.2d is ignored, so we drop it.
|
|
|
|
|
*/
|
|
|
|
|
(void) sprintf(result, "%s %s%3d %02d:%02d:%02d %d\n",
|
1989-03-18 20:35:08 -05:00
|
|
|
wn, mn,
|
1986-12-31 14:22:18 -05:00
|
|
|
timeptr->tm_mday, timeptr->tm_hour,
|
|
|
|
|
timeptr->tm_min, timeptr->tm_sec,
|
|
|
|
|
TM_YEAR_BASE + timeptr->tm_year);
|
|
|
|
|
return result;
|
|
|
|
|
}
|