open62541 1.4.15
Open source implementation of OPC UA
Loading...
Searching...
No Matches
libc_time.h
Go to the documentation of this file.
1#ifndef LIBC_TIME_H_
2#define LIBC_TIME_H_
3
4struct musl_tm {
5 int tm_sec;
6 int tm_min;
7 int tm_hour;
8 int tm_mday;
9 int tm_mon;
13 /* int tm_isdst; */
14 /* long __tm_gmtoff; */
15 /* const char *__tm_zone; */
16};
17
18int musl_secs_to_tm(long long t, struct musl_tm *tm);
19long long musl_tm_to_secs(const struct musl_tm *tm);
20
21#endif /* LIBC_TIME_H_ */
int musl_secs_to_tm(long long t, struct musl_tm *tm)
long long musl_tm_to_secs(const struct musl_tm *tm)
int tm_wday
Definition libc_time.h:11
int tm_yday
Definition libc_time.h:12
int tm_mday
Definition libc_time.h:8
int tm_hour
Definition libc_time.h:7
int tm_year
Definition libc_time.h:10
int tm_mon
Definition libc_time.h:9
int tm_sec
Definition libc_time.h:5
int tm_min
Definition libc_time.h:6