Files
semi-libc/src/multibyte/btowc.c
T

8 lines
89 B
C

#include <stdio.h>
#include <wchar.h>
wint_t btowc(int c)
{
return c<128U ? c : EOF;
}