b265c3ed95cdbab164d13c08764de700a47168ac
[opencv] / apps / Hawk / CVEiCL / EiC / module / stdClib / src / _OSF1 / time.h
1 #define CLOCKS_PER_SEC 1000000
2
3 struct tm {
4         int     tm_sec;
5         int     tm_min;
6         int     tm_hour;
7         int     tm_mday;
8         int     tm_mon;
9         int     tm_year;
10         int     tm_wday;
11         int     tm_yday;
12         int     tm_isdst;
13
14         long    tm_gmtoff;
15         char    *tm_zone;
16
17
18 };
19
20 char *asctime(struct tm * tm);
21 clock_t clock(void);
22 char *ctime(time_t * clock);
23 double difftime(time_t t1, time_t t2);
24 struct tm *gmtime(time_t *clock);
25 struct tm *localtime(time_t *clock);
26 time_t mktime(struct tm * tm);
27 size_t strftime(char * buf, size_t bufsize,char * fmt,struct tm *tm);
28 time_t time(time_t * tloc);
29
30
31
32
33
34
35
36