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

Function SDL_uitoa

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

Source from the content-addressed store, hash-verified

742}
743
744char *
745SDL_uitoa(unsigned int value, char *string, int radix)
746{
747#ifdef HAVE__UITOA
748 return _uitoa(value, string, radix);
749#else
750 return SDL_ultoa((unsigned long)value, string, radix);
751#endif /* HAVE__UITOA */
752}
753
754char *
755SDL_ltoa(long value, char *string, int radix)

Callers

nothing calls this directly

Calls 1

SDL_ultoaFunction · 0.85

Tested by

no test coverage detected