| |||
Home > The C and C++ Libraries > C library extensions > strtoll() |
The strtoll()
function converts a string
in an arbitrary base to an integer, similar to the ANSI function strtol()
,
but returning a long long result. Like strtol()
,
the parameter
can
point to a location in which to store a pointer to the end of the
translated string, or can be endptr
NULL
. The parameter
must
contain the number base. Setting base
to
zero indicates that the base is to be selected in the same way as base
atoll()
.