#include #include #include "internal.h" wint_t btowc(int c) { if (c < 128U) return c; if (MB_CUR_MAX==1) return CODEUNIT(c); return WEOF; }