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

Function num2str

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

Source from the content-addressed store, hash-verified

84#endif
85
86static void num2str(char *c, int i)
87{
88 c[0] = i / 10 + '0';
89 c[1] = i % 10 + '0';
90}
91
92#ifdef RT_USING_RTC
93static rt_err_t _control_rtc(int cmd, void *arg)

Callers 1

asctime_rFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected