SDL_atoi - Man Page

Parse an int from a string.

Synopsis

#include <SDL3/SDL_stdinc.h>

int SDL_atoi(const char *str);

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.

Return Value

Returns the parsed int.

Thread Safety

It is safe to call this function from any thread.

Availability

This function is available since SDL 3.2.0.

See Also

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

Referenced By

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

SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS