| 44 | extern char* ultoa_wp(unsigned long val, char* buffer, unsigned int base, int width, char pad); |
| 45 | |
| 46 | static inline char* ultoa_w(unsigned long val, char* buffer, unsigned int base, int width) |
| 47 | { |
| 48 | return ultoa_wp(val, buffer, base, width, ' '); |
| 49 | } |
| 50 | |
| 51 | static inline char* ultoa(unsigned long val, char* buffer, unsigned int base) |
| 52 | { |
nothing calls this directly
no test coverage detected