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

Function ltoa_w

Sming/System/include/stringconversion.h:27–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25extern char* ltoa_wp(long val, char* buffer, int base, int width, char pad);
26
27static inline char* ltoa_w(long val, char* buffer, int base, int width)
28{
29 return ltoa_wp(val, buffer, base, width, ' ');
30}
31
32static inline char* ltoa (long val, char* buffer, int base)
33{

Callers

nothing calls this directly

Calls 1

ltoa_wpFunction · 0.85

Tested by

no test coverage detected