btowc
(3)convert single byte to wide character
#include <wchar.h> wint_t btowc(int c);
LIBRARY
DESCRIPTION
RETURN VALUE
ATTRIBUTES
STANDARDS
HISTORY
NOTES
The behavior of btowc() depends on the LC_CTYPE category of the current locale.
This function should never be used. It does not work for encodings which have state, and unnecessarily treats single bytes differently from multibyte sequences. Use either mbtowc(3) or the thread-safe mbrtowc(3) instead.