MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / localtime

Function localtime

components/libc/compilers/common/ctime.c:226–230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

224RTM_EXPORT(localtime_r);
225
226struct tm* localtime(const time_t* t)
227{
228 static struct tm tmp;
229 return localtime_r(t, &tmp);
230}
231RTM_EXPORT(localtime);
232
233time_t mktime(struct tm * const t)

Callers 6

ctimeFunction · 0.85
pncrypt_setkeyFunction · 0.85
pncrypt_setkeyFunction · 0.85
_set_rtc_time_stampFunction · 0.85
rtc_controlFunction · 0.85
slcd_demo_hookFunction · 0.85

Calls 1

localtime_rFunction · 0.85

Tested by

no test coverage detected