| 1516 | } |
| 1517 | |
| 1518 | static size_t |
| 1519 | SDL_PrintLongLong(char *text, size_t maxlen, SDL_FormatInfo *info, Sint64 value) |
| 1520 | { |
| 1521 | char num[130], *p = num; |
| 1522 | |
| 1523 | if (info->force_sign && value >= (Sint64)0) { |
| 1524 | *p++ = '+'; |
| 1525 | } |
| 1526 | |
| 1527 | SDL_lltoa(value, p, info ? info->radix : 10); |
| 1528 | SDL_IntPrecisionAdjust(num, maxlen, info); |
| 1529 | return SDL_PrintString(text, maxlen, info, num); |
| 1530 | } |
| 1531 | |
| 1532 | static size_t |
| 1533 | SDL_PrintUnsignedLongLong(char *text, size_t maxlen, SDL_FormatInfo *info, Uint64 value) |
no test coverage detected