Crafter.Build/binlib/wasi-sysroot-28.0/include/wasm32-wasip1/__struct_tm.h
2025-11-09 18:56:24 +01:00

19 lines
308 B
C

#ifndef __wasilibc___struct_tm_h
#define __wasilibc___struct_tm_h
struct tm {
int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
int tm_year;
int tm_wday;
int tm_yday;
int tm_isdst;
int __tm_gmtoff;
const char *__tm_zone;
int __tm_nsec;
};
#endif