#include #include int wctob(wint_t c) { if (c < 128U) return c; return EOF; }