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

Function SDL_PrintUnsignedLong

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

Source from the content-addressed store, hash-verified

1506}
1507
1508static size_t
1509SDL_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
1518static size_t
1519SDL_PrintLongLong(char *text, size_t maxlen, SDL_FormatInfo *info, Sint64 value)

Callers 2

SDL_PrintFloatFunction · 0.85
SDL_vsnprintfFunction · 0.85

Calls 3

SDL_ultoaFunction · 0.85
SDL_IntPrecisionAdjustFunction · 0.85
SDL_PrintStringFunction · 0.85

Tested by

no test coverage detected