| 17 | } |
| 18 | |
| 19 | u64 currentTimeSeconds() { |
| 20 | return currentTimeMillis() / 1000LLU; |
| 21 | } |
| 22 | |
| 23 | void timeMillisToUTCCalendar(u64 timeMillis, int *year, int *month, int *day, int *hour, int *minute, int *second, int *millisecond) { |
| 24 | SYSTEMTIME st = {}; |
nothing calls this directly
no test coverage detected