29cb798d2ce2a25cf2eb4e8b5079b80ebfe523a4
[musl] / src / multibyte / btowc.c
1 #include <stdio.h>
2 #include <wchar.h>
3
4 wint_t btowc(int c)
5 {
6         c = (unsigned char)c;
7         return c<128U ? c : EOF;
8 }