opc source code

This commit is contained in:
flower_linux
2026-06-09 17:27:24 +08:00
parent 70f675a48b
commit f0da5cb3c3
2002 changed files with 269812 additions and 7 deletions

16
third_party/open62541/deps/libc_time.h vendored Normal file
View File

@@ -0,0 +1,16 @@
#ifndef LIBC_TIME_H_
#define LIBC_TIME_H_
struct mytm {
int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
int tm_year;
};
int __secs_to_tm(long long t, struct mytm *tm);
long long __tm_to_secs(const struct mytm *tm);
#endif /* LIBC_TIME_H_ */