1
0
mirror of https://github.com/pikami/slstatus.git synced 2025-03-09 19:38:19 +00:00
Laslo Hunhold 7246dc4381
Move components into dedicated subdirectory
This brings us a lot more tidiness.
2017-09-24 17:20:27 +02:00

17 lines
258 B
C

/* See LICENSE file for copyright and license details. */
#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;
}