wctob.c 101 B

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