NetBSD/lib/libntp/prettydate.c

47 lines
1019 B
C
Raw Normal View History

1999-07-02 19:58:35 +04:00
/* $NetBSD: prettydate.c,v 1.4 1999/07/02 15:58:36 simonb Exp $ */
1998-01-09 06:15:09 +03:00
1997-04-18 17:22:49 +04:00
/*
* prettydate - convert a time stamp to something readable
*/
#include <stdio.h>
#include "ntp_fp.h"
#include "ntp_unixtime.h" /* includes <sys/time.h> */
#include "lib_strbuf.h"
#include "ntp_stdlib.h"
#ifndef TM_IN_SYS_TIME
#include <time.h>
#endif
char *
prettydate(ts)
l_fp *ts;
{
char *bp;
struct tm *tm;
time_t sec;
u_long msec;
1998-03-06 21:17:13 +03:00
static const char *months[] = {
1997-04-18 17:22:49 +04:00
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
1998-03-06 21:17:13 +03:00
static const char *days[] = {
1997-04-18 17:22:49 +04:00
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
};
LIB_GETBUF(bp);
1999-07-02 19:58:35 +04:00
1997-04-18 17:22:49 +04:00
sec = ts->l_ui - JAN_1970;
msec = ts->l_uf / 4294967; /* fract / (2 ** 32 / 1000) */
tm = localtime(&sec);
(void) sprintf(bp, "%08lx.%08lx %s, %s %2d %4d %2d:%02d:%02d.%03lu",
(u_long)ts->l_ui, (u_long)ts->l_uf, days[tm->tm_wday],
months[tm->tm_mon], tm->tm_mday, 1900 + tm->tm_year,
tm->tm_hour,tm->tm_min, tm->tm_sec, msec);
1999-07-02 19:58:35 +04:00
1997-04-18 17:22:49 +04:00
return bp;
}