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

Function SDL_itoa

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

Source from the content-addressed store, hash-verified

732#endif /* ntoa() conversion table */
733
734char *
735SDL_itoa(int value, char *string, int radix)
736{
737#ifdef HAVE_ITOA
738 return itoa(value, string, radix);
739#else
740 return SDL_ltoa((long)value, string, radix);
741#endif /* HAVE_ITOA */
742}
743
744char *
745SDL_uitoa(unsigned int value, char *string, int radix)

Callers 1

SDL_AddVideoDisplayFunction · 0.85

Calls 1

SDL_ltoaFunction · 0.85

Tested by

no test coverage detected