|
|
The functions shown in the following table provide wide-character versions of the standard numeric and time conversion functions. These functions use the header <wchar.h>.
| Function | char Equivalent |
|---|---|
| size_t wcsftime(wchar_t *str, size_t max, | strftime( ) |
| double wcstod(const wchar_t *start, | strtod( ) |
| float wcstof(const wchar_t * restrict start, | strtof( ) (Added by C99) |
| long double wcstold(const wchar_t * | strtold( ) (Added by C99) |
| long int wcstol(const wchar_t *start, | strtol( ) |
| long long int wcstoll(const wchar_t * | strtoll( ) (Added by C99) |
| unsigned long int wcstoul( | strtoul( ) |
| unsigned long long int wcstoull( | strtoull( ) (Added |
|
|