SYNOPSIS
#include <wchar.h>
unsigned long wcstoul(const wchar_t *nptr, wchar_t **endptr, int base);
unsigned long long wcstoull(const wchar_t *nptr, wchar_t **endptr, int base);
uquad_t wcstouq(const wchar_t *nptr, wchar_t **endptr, int base);
unsigned long wcstoul_l(const wchar_t *nptr, wchar_t **endptr, int base, locale_t locale);
unsigned long long wcstoull_l(const wchar_t *nptr, wchar_t **endptr, int base, locale_t locale);
#include <inttypes.h>
uintmax_t wcstoumax(const wchar_t *nptr, wchar_t **endptr, int base);
uintmax_t wcstoumax_l(const wchar_t *nptr, wchar_t **endptr, int base, locale_t locale);
DESCRIPTION
The
If the value of base is 0, then the expected form of the sequence to be converted must be that of a decimal constant, octal constant or a hexadecimal constant. Each of the may be preceded by a + or - sign. A decimal constant must begin with a non-zero digit and be followed by a sequence of decimal digits. An octal constant must begin with a 0 prefix an optionally followed by a sequence of digits ranging from 0 to 7. A hexadecimal constant must be preceded by a 0x or 0X and followed by a sequence of decimal digits and the letters a(A) to f(F) with the values of 10 to 15 respectively.
If the value of base is between 2 and 36, then the expected form of the sequence to be converted must be a sequence of digits and letters representing an integer with a radix defined by base. The letters a(A) through z(Z) represent the values from 10 to 35 respectively. Only letters whose value are less than base are permitted. If the value of base is 16, then the sequence to be converted may optionally be preceded by 0x or 0X.
A pointer to the final sequence of wide characters is stored in the object pointed to by endptr, provided that endptr is not a NULL pointer.
PARAMETERS
- nptr
-
Is the null-terminated string to convert.
- endptr
-
Points to a character that stops the scan.
- base
-
Is the number base to use.
- locale
-
Is a locale_t perhaps returned by
newlocale() or LC_GLOBAL_LOCALE or 0 for the current thread locale set withuselocale() .
RETURN VALUES
Upon successful completion the
- ERANGE
-
The value is outside the range of representable values.
- EINVAL
-
The conversion could not be performed or the value of base is not supported.
CONFORMANCE
MULTITHREAD SAFETY LEVEL
MT-Safe.
PORTING ISSUES
None.
AVAILABILITY
PTC MKS Toolkit for Professional Developers
PTC MKS Toolkit for Professional Developers 64-Bit Edition
PTC MKS Toolkit for Enterprise Developers
PTC MKS Toolkit for Enterprise Developers 64-Bit Edition
SEE ALSO
- Functions:
newlocale() ,setlocale() ,wcstod() ,wcstod_l() ,wcstof() ,wcstof_l() ,wcstoimax() ,wcstoimax_l() ,wcstol() ,wcstol_l() ,wcstold() ,wcstold_l() ,wcstoll() ,wcstoll_l() ,wcstoq()
PTC MKS Toolkit 10.4 Documentation Build 39.