9d2c3b16eb77a4e6df82c31bb4c56d517424a533
[musl] / btowc.c
1 #include <stdio.h>
2 #include <wchar.h>
3
4 wint_t btowc(int c)
5 {
6         return c<128U ? c : EOF;
7 }