BTOWC(3) Library Functions Manual BTOWC(3)

btowcsingle-byte to wide-character conversion

#include <stdio.h>
#include <wchar.h>

wint_t btowc(int c);

The btowc() function determines whether c constitutes a valid (one-byte) character in the initial shift state.

The behaviour of this function is affected by the LC_CTYPE category of the current locale.

The btowc() function returns WEOF if c has the value EOF or if (unsigned char) c does not constitute a valid (one-byte) character in the initial shift state. Otherwise, it returns the wide-character representation of that character.

No errors are defined.

None.

None.

None.

wctob(3) , <wchar.h> .

Derived from the ISO/IEC 9899/AMD1:1995 (“ISO C90, Amendment 1”) (E).

February 1997 posix.fail