atoi

Converts given string to int.

extern (C) nothrow @nogc extern
int
atoi
(
const(char)* str
)

Parameters

str const(char)*

string to convert.

Return Value

Type: int

The int value of str on success, 0 on failure.

Meta