summaryrefslogtreecommitdiff
path: root/datetime.c
blob: 0f7dab4d1bb1c9139fd96fe542d36dfc062c3e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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)) == 0)
		return NULL;

	return buf;
}