btowc - convert single byte to wide character
#include <wchar.h>
wint_t btowc(int c);
The btowc() function returns the wide character
converted from the single byte c
. If c
is
EOF or not a valid multibyte sequence of length 1, it
returns WEOF.