public member function

std::ios::widen

<ios>
char widen ( char c ) const;
Widen character
Converts c to its locale equivalent.

If the basic template basic_ios is used with a type other than char the function also performs the appropiate conversion from char to the char_type used.

Parameters

c
character of type char to be widened.

Return Value

The locale equivalent of c

Basic template member declaration

( basic_ios<charT,traits> )
1
2
typedef charT char_type;
char_type widen ( char c ) const;


See also