WCSTOL(3) BSD Library Functions Manual WCSTOL(3)
NAME
wcstoll, wcstoull, wcstolll, wcstoulll, wcstoimaxl, wcstoumaxl --
convert a wide character string value to a long, unsigned long, long
long, unsigned long long, intmaxt or uintmaxt integer
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
##include <>
##include <>
long
wcstoll(const wchart * restrict nptr, wchart ** restrict endptr,
int base, localet loc);
unsigned long
wcstoull(const wchart * restrict nptr, wchart ** restrict endptr,
int base, localet loc);
long long
wcstolll(const wchart * restrict nptr, wchart ** restrict endptr,
int base, localet loc);
unsigned long long
wcstoulll(const wchart * restrict nptr, wchart ** restrict endptr,
int base, localet loc);
##include <>
intmaxt
wcstoimaxl(const wchart * restrict nptr, wchart ** restrict endptr,
int base, localet loc);
uintmaxt
wcstoumaxl(const wchart * restrict nptr, wchart ** restrict endptr,
int base, localet loc);
DESCRIPTION
The wcstoll(), wcstoull(), wcstolll(), wcstoulll(), wcstoimaxl() and
wcstoumaxl() functions are extended locale versions of the wcstol(),
wcstoul(), wcstoll(), wcstoull(), wcstoimax() and wcstoumax() functions,
respectively. Refer to their manual pages for details. Also, see
xlocale(3) for more information about extended locales.
SEE ALSO
wcstol(3), xlocale(3)
BSD March 11, 2005 BSD
|