MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / SDL_PrintUnsignedLongLong

Function SDL_PrintUnsignedLongLong

deps/SDL2/src/stdlib/SDL_string.c:1532–1540  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1530}
1531
1532static size_t
1533SDL_PrintUnsignedLongLong(char *text, size_t maxlen, SDL_FormatInfo *info, Uint64 value)
1534{
1535 char num[130];
1536
1537 SDL_ulltoa(value, num, info ? info->radix : 10);
1538 SDL_IntPrecisionAdjust(num, maxlen, info);
1539 return SDL_PrintString(text, maxlen, info, num);
1540}
1541
1542static size_t
1543SDL_PrintFloat(char *text, size_t maxlen, SDL_FormatInfo *info, double arg)

Callers 1

SDL_vsnprintfFunction · 0.85

Calls 3

SDL_ulltoaFunction · 0.85
SDL_IntPrecisionAdjustFunction · 0.85
SDL_PrintStringFunction · 0.85

Tested by

no test coverage detected