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

Function asctime

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

Source from the content-addressed store, hash-verified

299RTM_EXPORT(asctime_r);
300
301char *asctime(const struct tm *timeptr)
302{
303 static char buf[26];
304 return asctime_r(timeptr, buf);
305}
306RTM_EXPORT(asctime);
307
308char *ctime_r(const time_t * tim_p, char * result)

Callers 1

ctimeFunction · 0.85

Calls 1

asctime_rFunction · 0.85

Tested by

no test coverage detected