0b44a031
1 2 3 4 5 6 7 8
#include <stdio.h> #include <wchar.h> int wctob(wint_t c) { if (c < 128U) return c; return EOF; }