| 61 | } |
| 62 | |
| 63 | static inline char* lltoa(long long val, char* buffer, int base) |
| 64 | { |
| 65 | return lltoa_wp(val, buffer, base, 0, ' '); |
| 66 | } |
| 67 | |
| 68 | |
| 69 | extern char* ulltoa_wp(unsigned long long val, char* buffer, unsigned int base, int width, char pad); |
nothing calls this directly
no test coverage detected