Query: atoi
OS: netbsd
Section: 3
Links: netbsd man pages all man pages
Forums: unix linux community forum categories
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ATOI(3) BSD Library Functions Manual ATOI(3)NAMEatoi -- convert ASCII string to integerLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <stdlib.h> int atoi(const char *nptr);DESCRIPTIONThe atoi() function converts the initial portion of the string pointed to by nptr to integer representation. It is equivalent to: (int)strtol(nptr, (char **)NULL, 10);SEE ALSOatof(3), atol(3), strtod(3), strtol(3), strtoul(3)STANDARDSThe atoi() function conforms to ANSI X3.159-1989 (``ANSI C89'').CAVEATSatoi does no overflow checking, handles unsigned numbers poorly, and handles strings containing trailing extra characters (like ``123abc'') poorly. Careful use of strtol(3) and strtoul(3) can alleviate these problems.BSDJune 4, 1993 BSD
Related Man Pages |
---|
atoi(3) - redhat |
atol(3) - redhat |
atol(3) - minix |
atol(3) - xfree86 |
atoi(3) - opendarwin |