open62541 1.3.12
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 mytm {
5 int tm_sec;
6 int tm_min;
7 int tm_hour;
8 int tm_mday;
9 int tm_mon;
11};
12
13int __secs_to_tm(long long t, struct mytm *tm);
14long long __tm_to_secs(const struct mytm *tm);
15
16#endif /* LIBC_TIME_H_ */
long long __tm_to_secs(const struct mytm *tm)
int __secs_to_tm(long long t, struct mytm *tm)
int tm_mon
Definition libc_time.h:9
int tm_year
Definition libc_time.h:10
int tm_sec
Definition libc_time.h:5
int tm_hour
Definition libc_time.h:7
int tm_min
Definition libc_time.h:6
int tm_mday
Definition libc_time.h:8