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