| 56 | extern char* lltoa_wp(long long val, char* buffer, int base, int width, char pad); |
| 57 | |
| 58 | static inline char* lltoa_w(long long val, char* buffer, int base, int width) |
| 59 | { |
| 60 | return lltoa_wp(val, buffer, base, width, ' '); |
| 61 | } |
| 62 | |
| 63 | static inline char* lltoa(long long val, char* buffer, int base) |
| 64 | { |
nothing calls this directly
no test coverage detected