Query: strtoumax
OS: debian
Section: 3
Links: debian man pages all man pages
Forums: forum home forum categories
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
STRTOIMAX(3) Linux Programmer's Manual STRTOIMAX(3)NAMEstrtoimax, strtoumax - convert string to integerSYNOPSIS#include <inttypes.h> intmax_t strtoimax(const char *nptr, char **endptr, int base); uintmax_t strtoumax(const char *nptr, char **endptr, int base);DESCRIPTIONThese functions are just like strtol(3) and strtoul(3), except that they return a value of type intmax_t and uintmax_t, respectively.RETURN VALUEOn success, the converted value is returned. If nothing was found to convert, zero is returned. On overflow or underflow INTMAX_MAX or INTMAX_MIN or UINTMAX_MAX is returned, and errno is set to ERANGE.CONFORMING TOC99, POSIX.1-2001.SEE ALSOimaxabs(3), imaxdiv(3), strtol(3), strtoul(3), wcstoimax(3)COLOPHONThis page is part of release 3.44 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. 2003-11-28 STRTOIMAX(3)