ATOI(3) Library Functions Manual ATOI(3)
NAME
atoi — convert a
string to integer
SYNOPSIS
#include <stdlib.h> int atoi(const char *str);
DESCRIPTION
The call atoi ( str ) is equivalent
to:
(int) strtol(str, (char **)NULL, 10)
RETURN VALUE
The atoi() function returns the converted value if the value can be represented.
ERRORS
No errors are defined.
EXAMPLES
None.
APPLICATION USAGE
The atoi() function is subsumed by strtol(3) but is retained because it is used extensively in existing code. If the number is not known to be in range, strtol(3) should be used because atoi() is not required to perform any error checking.
FUTURE DIRECTIONS
None.
SEE ALSO
strtol(3) , <stdlib.h> .
DERIVATION
Derived from Issue 1 of the SVID.
February 1997 posix.fail