DOKK / manpages / debian 13 / libsdl3-doc / SDL_atoi.3.en
SDL_atoi(3) SDL3 FUNCTIONS SDL_atoi(3)

SDL_atoi - Parse an int from a string.

Defined in SDL3/SDL_stdinc.h

#include "SDL3/SDL.h"
int SDL_atoi(const char *str);

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

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

Returns the parsed int .

It is safe to call this function from any thread.

This function is available since SDL 3.2.0.

(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)

SDL 3.2.10 Simple Directmedia Layer