20 lines
333 B
C
20 lines
333 B
C
|
/* See LICENSE file for copyright and license details. */
|
||
|
#include <stdio.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
#include "../util.h"
|
||
|
|
||
|
const char *
|
||
|
datetime(const char *fmt)
|
||
|
{
|
||
|
time_t t;
|
||
|
|
||
|
t = time(NULL);
|
||
|
if (!strftime(buf, sizeof(buf), fmt, localtime(&t))) {
|
||
|
warn("strftime: Result string exceeds buffer size");
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
return buf;
|
||
|
}
|