mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
11 lines
152 B
C
11 lines
152 B
C
|
#include <time.h>
|
||
|
#include <assert.h>
|
||
|
|
||
|
struct tm ltime(void)
|
||
|
{
|
||
|
time_t t;
|
||
|
time(&t);
|
||
|
assert (t != ((time_t)-1));
|
||
|
return *localtime(&t);
|
||
|
}
|