Xinqi Bao's Git

713b0fb98e69ba557e377c4e96b4a3be4699baea
[slstatus.git] / components / datetime.c
1 /* See LICENSE file for copyright and license details. */
2 #include <time.h>
3
4 #include "../util.h"
5
6 const char *
7 datetime(const char *fmt)
8 {
9 time_t t;
10
11 t = time(NULL);
12 if (!strftime(buf, sizeof(buf), fmt, localtime(&t))) {
13 return NULL;
14 }
15
16 return buf;
17 }