logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_strtod - Parse a double from a string.

Availability

       This function is available since SDL 3.2.0.

Description

       This function makes fewer guarantees than the C runtime strtod:

       •  Only  decimal  notation  is  guaranteed  to  be  supported. The handling of scientific and hexadecimal
       notation is unspecified.

       • Whether or not INF and NAN can be parsed is unspecified.

       • The precision of the result is unspecified.

Function Parameters

str    the null-terminated string to read. Must not be NULL.

       endp   if not NULL, the address of the first invalid character (i.e. the next character after the  parsed
              number) will be written to this pointer.

Name

       SDL_strtod - Parse a double from a string.

Return Value

       Returns the parsed double, or 0 if no number could be parsed.

See Also

SDL_atoi(3), SDL_atof(3), SDL_strtol(3), SDL_strtoll(3), SDL_strtoul(3), SDL_strtoull(3)

Simple Directmedia Layer                           SDL 3.2.20                                      SDL_strtod(3)

Synopsis

#include<SDL3/SDL_stdinc.h>doubleSDL_strtod(constchar*str,char**endp);

Thread Safety

       It is safe to call this function from any thread.

See Also