NetBSD/lib/libc/time/asctime.c

89 lines
2.1 KiB
C
Raw Normal View History

1998-09-10 19:58:38 +04:00
/* $NetBSD: asctime.c,v 1.7 1998/09/10 15:58:39 kleink 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>
1995-03-10 02:21:48 +03:00
#ifndef lint
#ifndef NOID
1997-07-14 00:25:30 +04:00
#if 0
1997-06-18 05:12:39 +04:00
static char elsieid[] = "@(#)asctime.c 7.8";
1997-07-14 00:25:30 +04:00
#else
1998-09-10 19:58:38 +04:00
__RCSID("$NetBSD: asctime.c,v 1.7 1998/09/10 15:58:39 kleink Exp $");
1997-07-14 00:25:30 +04:00
#endif
1995-03-10 02:21:48 +03:00
#endif /* !defined NOID */
#endif /* !defined lint */
/*LINTLIBRARY*/
#include "private.h"
#include "tzfile.h"
1998-09-10 19:58:38 +04:00
#ifdef __weak_alias
__weak_alias(asctime_r,_asctime_r);
#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
}