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_strtoull - Parse an unsignedlonglong from a string.

Availability

       This function is available since SDL 3.2.0.

Description

       If  str  starts  with whitespace, then those whitespace characters are skipped before attempting to parse
       the number.

       If the parsed number does not fit inside an unsignedlonglong , the  result  is  clamped  to  the  maximum
       representable unsignedlonglong value.

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.

       base   The base of the integer to read. Supported values are 0 and 2 to 36 inclusive. If 0, the base will
              be inferred from the number's prefix (0x for hexadecimal, 0 for octal, decimal otherwise).

Header File

       Defined in SDL3/SDL_stdinc.h

Name

       SDL_strtoull - Parse an unsignedlonglong from a string.

Return Value

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

See Also

(3), SDL_atoi(3), (3), SDL_atof(3), (3), SDL_strtol(3), (3),  SDL_strtoll(3),  (3),  SDL_strtoul(3),
       (3), SDL_strtod(3), (3), SDL_ulltoa(3)

Simple Directmedia Layer                           SDL 3.2.10                                    SDL_strtoull(3)

Synopsis

#include"SDL3/SDL.h"unsignedlonglongSDL_strtoull(constchar*str,char**endp,intbase);

Thread Safety

       It is safe to call this function from any thread.

See Also