1
0

btowc.c 89 B

1234567
  1. #include <stdio.h>
  2. #include <wchar.h>
  3. wint_t btowc(int c)
  4. {
  5. return c<128U ? c : EOF;
  6. }