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

Function SDL_atof

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

Source from the content-addressed store, hash-verified

849}
850
851double SDL_atof(const char *string)
852{
853#ifdef HAVE_ATOF
854 return atof(string);
855#else
856 return SDL_strtod(string, NULL);
857#endif /* HAVE_ATOF */
858}
859
860long
861SDL_strtol(const char *string, char **endp, int base)

Callers 3

SDLTest_CommonArgFunction · 0.85

Calls 1

SDL_strtodFunction · 0.85

Tested by 1

SDLTest_CommonArgFunction · 0.68