lang-bootstrap/05/musl-final/src/multibyte/btowc.c

8 lines
89 B
C
Raw Normal View History

2025-04-05 10:55:40 +01:00
#include <stdio.h>
#include <wchar.h>
wint_t btowc(int c)
{
return c<128U ? c : EOF;
}