Wednesday, November 30, 2016

C Wide string numeric conversion Functions

Wide string numeric conversion Functions:
wcstol(C95) long wcstol( const wchar_t * str, wchar_t ** str_end, int base );
wcstoll(C99) long long wcstoll( const wchar_t * str, wchar_t ** str_end, int base );
wcstoul(C95) unsigned long wcstoul( const wchar_t * str, wchar_t ** str_end, int base );
wcstoull(C99) unsigned long long wcstoull( const wchar_t * str, wchar_t ** str_end, int base );
wcstof(C99) float wcstof( const wchar_t * str, wchar_t ** str_end );
wcstod(C95) double wcstod( const wchar_t * str, wchar_t ** str_end );
wcstold(C99) long double wcstold( const wchar_t * str, wchar_t ** str_end );

wchar.h
Formatted wide character input/output Functions
Wide character input/output Functions
Wide string numeric conversion Functions
Wide string copying Functions
Wide string concatenation Functions
Wide string comparison Functions
Wide string search functions
Miscellaneous Functions
Wide character time conversion Functions
Single-byte/wide character conversion Functions
Conversion state Functions
Restartable multibyte/wide character conversion Functions
Restartable multibyte/wide string conversion Functions


Related topics:
Library Functions in C   |   Standard Library in C   |   Header Files in C   |   Functions in C   |   Keywords in C   |   Data Types in C   |   Pointers in C

List of topics: C Programming

No comments:

Post a Comment