MCPcopy Create free account
hub / github.com/SmingHub/Sming / itoa

Function itoa

Sming/System/include/stringconversion.h:38–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36
37#ifndef ARCH_ESP32
38static inline char* itoa (int val, char* buffer, int base)
39{
40 return ltoa_wp(val, buffer, base, 0, ' ');
41}
42#endif
43
44extern char* ultoa_wp(unsigned long val, char* buffer, unsigned int base, int width, char pad);

Callers

nothing calls this directly

Calls 1

ltoa_wpFunction · 0.85

Tested by

no test coverage detected