i3status/src/print_time.c

15 lines
364 B
C
Raw Normal View History

// vim:ts=8:expandtab
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
2011-04-21 18:49:22 +00:00
void print_time(const char *format, struct tm *current_tm) {
static char part[512];
/* Get date & time */
if (current_tm == NULL) {
return;
}
(void)strftime(part, sizeof(part), format, current_tm);
printf("%s", part);
}