From 7a88832e78cbc18db109c091d74f6d27284cff44 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 12 Mar 2000 22:43:13 +0000 Subject: Added tm_format_datetime(). --- sysdep/unix/io.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'sysdep/unix/io.c') diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index f860307..267e589 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -292,6 +292,16 @@ tm_format_date(char *x, bird_clock_t t) sprintf(x, "%02d-%02d-%04d", tm->tm_mday, tm->tm_mon+1, tm->tm_year+1900); } +void +tm_format_datetime(char *x, bird_clock_t t) +{ + struct tm *tm; + + tm = localtime(&t); + if (strftime(x, TM_DATETIME_BUFFER_SIZE, "%d-%m-%Y %H:%M:%S", tm) == TM_DATETIME_BUFFER_SIZE) + strcpy(x, ""); +} + void tm_format_reltime(char *x, bird_clock_t t) { -- cgit v1.2.3