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

Function gmtime

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

Source from the content-addressed store, hash-verified

205RTM_EXPORT(gmtime_r);
206
207struct tm* gmtime(const time_t* t)
208{
209 static struct tm tmp;
210 return gmtime_r(t, &tmp);
211}
212RTM_EXPORT(gmtime);
213
214struct tm* localtime_r(const time_t* t, struct tm* r)

Callers 4

file_write_http_headerFunction · 0.85
file_write_http_headerFunction · 0.85
set_rtc_time_stampFunction · 0.85
set_rtc_time_stampFunction · 0.85

Calls 1

gmtime_rFunction · 0.70

Tested by

no test coverage detected