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_atoi - Parse an int from a string.

Availability

       This function is available since SDL 3.2.0.

Description

       The result of calling SDL_atoi(str) is equivalent to (int)SDL_strtol(str,NULL,10) .

Function Parameters

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

Header File

       Defined in SDL3/SDL_stdinc.h

Name

       SDL_atoi - Parse an int from a string.

Return Value

       Returns the parsed int .

See Also

(3),   SDL_atof(3),   (3),   SDL_strtol(3),   (3),   SDL_strtoul(3),   (3),   SDL_strtoll(3),   (3),
       SDL_strtoull(3), (3), SDL_strtod(3), (3), SDL_itoa(3)

Simple Directmedia Layer                           SDL 3.2.10                                        SDL_atoi(3)

Synopsis

#include"SDL3/SDL.h"intSDL_atoi(constchar*str);

Thread Safety

       It is safe to call this function from any thread.

See Also