This repository has been archived on 2024-08-18. You can view files and clone it, but cannot push or open issues or pull requests.
suckless/slstatus/components/datetime.c

21 lines
358 B
C
Raw Normal View History

2024-07-21 06:49:56 +08:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <time.h>
#include "../slstatus.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;
}