blob: ff3e7793329155cdfce349aacc6131967fce6ce9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <stdlib.h>
#include <time.h>
#include <config.h>
char *at_time_string(void)
{
char *time_string = calloc(sizeof(char), 25);
time_t t = time(NULL);
#if HAVE_LOCALTIME_R
struct tm newtime;
localtime_r(&t, &newtime);
strftime(time_string, 25, "%c", &newtime);
#else
// the mingw-w64 toolchain does not have localtime_r()
strftime(time_string, 25, "%c", localtime(&t));
#endif
return time_string;
}
|