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"
|
|
|
|
|
};
|
1989-03-21 11:37:00 -05:00
|
|
|
static char result[26];
|
|
|
|
|
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];
|
1987-04-12 13:01:27 -04:00
|
|
|
(void) sprintf(result, "%.3s %.3s%3d %02.2d:%02.2d:%02.2d %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;
|
|
|
|
|
}
|