NAME
aattooii, aattooiill - convert ASCII string to integer
LLIIBBRRAARRYYStandard C Library (libc, -lc)
SYNOPSIS
##iinncclluuddee <
int aattooii(const char *nptr);> ##iinncclluuddee <
int aattooiill(const char *nptr, localet loc);> DESCRIPTION
The aattooii() function converts the initial portion of the string pointed to by nptr to int representation. It is equivalent to: (int)strtol(nptr, (char **)NULL, 10); While the aattooii() function uses the current locale, the aattooiill() function may be passed a locale directly. See xlocale(3) for more information. IIMMPPLLEEMMEENNTTAATTIIOONN NNOOTTEESSThe aattooii() function is not thread-safe and also not async-cancel safe.
The aattooii() function has been deprecated by ssttrrttooll() and should not be used in new code. EERRRROORRSS The function aattooii() need not affect the value of errno on an error.SEE ALSO
atof(3), atol(3), strtod(3), strtol(3), strtoul(3), xlocale(3) STANDARDSThe aattooii() function conforms to ISO/IEC 9945-1:1990 (``POSIX.1''),
ISO/IEC 9899:1990 (``ISO C90''), and ISO/IEC 9899:1999 (``ISO C99''). BSD June 4, 1993 BSD