2000-09-14 02:32:25 +04:00
|
|
|
/* $NetBSD: asctime.c,v 1.11 2000/09/13 22:32:28 msaitoh Exp $ */
|
1996-09-11 02:04:29 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** This file is in the public domain, so clarified as of
|
1997-06-18 05:12:39 +04:00
|
|
|
** 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov).
|
1996-09-11 02:04:29 +04:00
|
|
|
*/
|
1995-03-10 02:41:11 +03:00
|
|
|
|
1997-07-14 00:25:30 +04:00
|
|
|
#include <sys/cdefs.h>
|
2000-09-14 02:32:25 +04:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
1997-07-14 00:25:30 +04:00
|
|
|
#if 0
|
1998-09-11 15:35:21 +04:00
|
|
|
static char elsieid[] = "@(#)asctime.c 7.9";
|
1997-07-14 00:25:30 +04:00
|
|
|
#else
|
2000-09-14 02:32:25 +04:00
|
|
|
__RCSID("$NetBSD: asctime.c,v 1.11 2000/09/13 22:32:28 msaitoh Exp $");
|
1997-07-14 00:25:30 +04:00
|
|
|
#endif
|
2000-09-14 02:32:25 +04:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
1995-03-10 02:21:48 +03:00
|
|
|
|
|
|
|
/*LINTLIBRARY*/
|
|
|
|
|
1998-10-08 16:18:18 +04:00
|
|
|
#include "namespace.h"
|
1995-03-10 02:21:48 +03:00
|
|
|
#include "private.h"
|
|
|
|
#include "tzfile.h"
|
|
|
|
|
1998-09-10 19:58:38 +04:00
|
|
|
#ifdef __weak_alias
|
2000-01-23 01:19:07 +03:00
|
|
|
__weak_alias(asctime_r,_asctime_r)
|
1998-09-10 19:58:38 +04:00
|
|
|
#endif
|
|
|
|
|
1995-03-10 02:21:48 +03:00
|
|
|
/*
|
1998-09-10 19:58:38 +04:00
|
|
|
** A la ISO/IEC 9945-1, ANSI/IEEE Std 1003.1, Second Edition, 1996-07-12.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Big enough for something such as
|
|
|
|
** ??? ???-2147483648 -2147483648:-2147483648:-2147483648 -2147483648\n
|
|
|
|
** (two three-character abbreviations, five strings denoting integers,
|
|
|
|
** three explicit spaces, two explicit colons, a newline,
|
|
|
|
** and a trailing ASCII nul).
|
1995-03-10 02:21:48 +03:00
|
|
|
*/
|
1998-09-10 19:58:38 +04:00
|
|
|
#define ASCTIME_BUFLEN (3 * 2 + 5 * INT_STRLEN_MAXIMUM(int) + 3 + 2 + 1 + 1)
|
1995-03-10 02:21:48 +03:00
|
|
|
|
|
|
|
char *
|
1998-09-10 19:58:38 +04:00
|
|
|
asctime_r(timeptr, buf)
|
1995-03-10 02:21:48 +03:00
|
|
|
register const struct tm * timeptr;
|
1998-09-10 19:58:38 +04:00
|
|
|
char * buf;
|
1995-03-10 02:21:48 +03:00
|
|
|
{
|
|
|
|
static const char wday_name[][3] = {
|
|
|
|
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
|
|
|
|
};
|
|
|
|
static const char mon_name[][3] = {
|
|
|
|
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
|
|
|
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
|
|
|
|
};
|
|
|
|
register const char * wn;
|
|
|
|
register const char * mn;
|
|
|
|
|
|
|
|
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];
|
|
|
|
/*
|
|
|
|
** The X3J11-suggested format is
|
|
|
|
** "%.3s %.3s%3d %02.2d:%02.2d:%02.2d %d\n"
|
|
|
|
** Since the .2 in 02.2d is ignored, we drop it.
|
|
|
|
*/
|
1998-09-10 19:58:38 +04:00
|
|
|
(void)snprintf(buf,
|
|
|
|
sizeof (char[ASCTIME_BUFLEN]),
|
|
|
|
"%.3s %.3s%3d %02d:%02d:%02d %d\n",
|
1995-03-10 02:21:48 +03:00
|
|
|
wn, mn,
|
|
|
|
timeptr->tm_mday, timeptr->tm_hour,
|
|
|
|
timeptr->tm_min, timeptr->tm_sec,
|
|
|
|
TM_YEAR_BASE + timeptr->tm_year);
|
1998-09-10 19:58:38 +04:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** A la X3J11, with core dump avoidance.
|
|
|
|
*/
|
|
|
|
|
|
|
|
char *
|
|
|
|
asctime(timeptr)
|
|
|
|
register const struct tm * timeptr;
|
|
|
|
{
|
|
|
|
static char result[ASCTIME_BUFLEN];
|
|
|
|
|
|
|
|
return asctime_r(timeptr, result);
|
1995-03-10 02:21:48 +03:00
|
|
|
}
|