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

Function lltoa_w

Sming/System/include/stringconversion.h:58–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56extern char* lltoa_wp(long long val, char* buffer, int base, int width, char pad);
57
58static inline char* lltoa_w(long long val, char* buffer, int base, int width)
59{
60 return lltoa_wp(val, buffer, base, width, ' ');
61}
62
63static inline char* lltoa(long long val, char* buffer, int base)
64{

Callers

nothing calls this directly

Calls 1

lltoa_wpFunction · 0.85

Tested by

no test coverage detected