MCPcopy Create free account
hub / github.com/catboost/catboost / gmtime_r

Function gmtime_r

util/datetime/systime.cpp:60–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58}
59
60tm* gmtime_r(const time_t* clock, tm* result) {
61 return gmtime_s(result, clock) == 0 ? result : 0;
62}
63
64char* ctime_r(const time_t* clock, char* buf) {
65 char* res = ctime(clock);

Callers 9

gm_timeFunction · 0.85
gm_timeFunction · 0.85
LocalDateTimeStringFunction · 0.85
computeUTCDiffFunction · 0.85
_cmsGetTimeFunction · 0.85
Y_UNIT_TESTFunction · 0.85
TestGmTimeRFunction · 0.85
BM_gmtime_rFunction · 0.85
Y_UNIT_TESTFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestGmTimeRFunction · 0.68