1996-06-05 08:01:54 -04:00
|
|
|
/*
|
|
|
|
|
** This file is in the public domain, so clarified as of
|
1996-09-08 19:57:02 -04:00
|
|
|
** 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov).
|
1996-06-05 08:01:54 -04:00
|
|
|
*/
|
|
|
|
|
|
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
|
|
|
|
2004-07-26 15:23:32 -04:00
|
|
|
#define STANDARD_BUFFER_SIZE 26
|
|
|
|
|
|
1986-12-31 14:22:18 -05:00
|
|
|
/*
|
2004-07-20 10:03:30 -04:00
|
|
|
** A la ISO/IEC 9945-1, ANSI/IEEE Std 1003.1, 2004 Edition.
|
1986-12-31 14:22:18 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
char *
|
1998-05-25 12:59:36 -04:00
|
|
|
asctime_r(timeptr, buf)
|
1988-02-16 22:44:07 -05:00
|
|
|
register const struct tm * timeptr;
|
1998-05-25 12:59:36 -04:00
|
|
|
char * buf;
|
1986-12-31 14:22:18 -05:00
|
|
|
{
|
1993-05-29 21:14:53 -04:00
|
|
|
static const char wday_name[][3] = {
|
1986-12-31 14:22:18 -05:00
|
|
|
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
|
|
|
|
|
};
|
1993-05-29 21:14:53 -04:00
|
|
|
static const char mon_name[][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
|
|
|
register const char * wn;
|
|
|
|
|
register const char * mn;
|
2004-07-26 15:23:32 -04:00
|
|
|
register int result;
|
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
|
|
|
/*
|
2004-07-20 10:03:30 -04:00
|
|
|
** The format used in the (2004) standard is
|
2004-07-20 09:46:38 -04:00
|
|
|
** "%.3s %.3s%3d %.2d:%.2d:%.2d %d\n"
|
2004-07-27 10:31:41 -04:00
|
|
|
** Some systems only handle "%.2d"; others only handle "%02d";
|
|
|
|
|
** "%02.2d" makes everybody happy.
|
1992-12-01 15:41:33 -05:00
|
|
|
*/
|
2004-07-26 15:23:32 -04:00
|
|
|
result = snprintf(buf, STANDARD_BUFFER_SIZE,
|
2004-07-27 10:31:41 -04:00
|
|
|
"%.3s %.3s%3d %02.2d:%02.2d:%02.2d %4ld\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,
|
2004-07-20 09:46:38 -04:00
|
|
|
timeptr->tm_year + (long) TM_YEAR_BASE);
|
2004-07-26 15:23:32 -04:00
|
|
|
if (result < 0 || result >= STANDARD_BUFFER_SIZE) {
|
|
|
|
|
errno = EOVERFLOW;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1998-05-25 12:59:36 -04:00
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2004-07-20 10:03:30 -04:00
|
|
|
** A la ISO/IEC 9945-1, ANSI/IEEE Std 1003.1, 2004 Edition,
|
|
|
|
|
** with core dump avoidance.
|
1998-05-25 12:59:36 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
asctime(timeptr)
|
|
|
|
|
register const struct tm * timeptr;
|
|
|
|
|
{
|
2004-07-26 15:23:32 -04:00
|
|
|
static char result[STANDARD_BUFFER_SIZE];
|
1998-05-25 12:59:36 -04:00
|
|
|
|
|
|
|
|
return asctime_r(timeptr, result);
|
1986-12-31 14:22:18 -05:00
|
|
|
}
|