| 1506 | } |
| 1507 | |
| 1508 | static size_t |
| 1509 | SDL_PrintUnsignedLong(char *text, size_t maxlen, SDL_FormatInfo *info, unsigned long value) |
| 1510 | { |
| 1511 | char num[130]; |
| 1512 | |
| 1513 | SDL_ultoa(value, num, info ? info->radix : 10); |
| 1514 | SDL_IntPrecisionAdjust(num, maxlen, info); |
| 1515 | return SDL_PrintString(text, maxlen, info, num); |
| 1516 | } |
| 1517 | |
| 1518 | static size_t |
| 1519 | SDL_PrintLongLong(char *text, size_t maxlen, SDL_FormatInfo *info, Sint64 value) |
no test coverage detected