mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 08:31:28 -04:00
37 lines
836 B
C
37 lines
836 B
C
/* $NetBSD: humandate.c,v 1.3 2012/02/01 07:46:22 kardel Exp $ */
|
|
|
|
/*
|
|
* humandate - convert an NTP (or the current) time to something readable
|
|
*/
|
|
#include <stdio.h>
|
|
#include "ntp_fp.h"
|
|
#include "ntp_unixtime.h" /* includes <sys/time.h> and <time.h> */
|
|
#include "lib_strbuf.h"
|
|
#include "ntp_stdlib.h"
|
|
|
|
extern const char *months[]; /* prettydate.c */
|
|
|
|
/* This is used in msyslog.c; we don't want to clutter up the log with
|
|
the year and day of the week, etc.; just the minimal date and time. */
|
|
|
|
const char *
|
|
humanlogtime(void)
|
|
{
|
|
char * bp;
|
|
time_t cursec;
|
|
struct tm * tm;
|
|
|
|
cursec = time(NULL);
|
|
tm = localtime(&cursec);
|
|
if (!tm)
|
|
return "-- --- --:--:--";
|
|
|
|
LIB_GETBUF(bp);
|
|
|
|
snprintf(bp, LIB_BUFLENGTH, "%2d %s %02d:%02d:%02d",
|
|
tm->tm_mday, months[tm->tm_mon],
|
|
tm->tm_hour, tm->tm_min, tm->tm_sec);
|
|
|
|
return bp;
|
|
}
|