Mapper
libraries
common
gmttime.c
Go to the documentation of this file.
1
2
#include "
prototypes_new.h
"
3
4
5
struct
tm*
gmttime
(time_t *secs)
6
7
{
8
9
struct
tm *gmtim;
10
11
gmtim=gmtime(secs);
12
13
if
(gmtim->tm_year >= 100)
14
gmtim->tm_year= gmtim->tm_year-100;
15
16
return
gmtim;
17
18
}
19
gmttime
struct tm * gmttime(time_t *secs)
Definition:
gmttime.c:5
prototypes_new.h
Generated by
1.9.1