2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
20#ifndef NET_SYSTEM_TIME_H
21#define NET_SYSTEM_TIME_H
23#ifndef DOXYGEN_SHOULD_SKIP_THIS
37 time_t
time(time_t* tloc);
38 struct tm*
gmtime(
const time_t* timep);
39 time_t
mktime(
struct tm* tm);
42 int gettimeofday(
struct timeval* tv,
struct timezone* tz);
struct tm * gmtime(const time_t *timep)
time_t mktime(struct tm *tm)
time_t time(time_t *tloc)
int gettimeofday(struct timeval *tv, struct timezone *tz)