MCPcopy Create free account
hub / github.com/cinit/WSAPatch / timeMillisToLocalCalendar

Function timeMillisToLocalCalendar

TimeUtils.cpp:66–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64}
65
66void timeMillisToLocalCalendar(u64 timeMillis, int *year, int *month, int *day, int *hour, int *minute, int *second, int *millisecond) {
67 u64 timeWithBias = timeMillis + getLocalTimeBiasSeconds() * 1000;
68 timeMillisToUTCCalendar(timeWithBias, year, month, day, hour, minute, second, millisecond);
69}

Callers 1

defaultLogHandlerFunction · 0.85

Calls 2

getLocalTimeBiasSecondsFunction · 0.85
timeMillisToUTCCalendarFunction · 0.85

Tested by

no test coverage detected