8 lines
89 B
C
8 lines
89 B
C
#include <stdio.h>
|
|
#include <wchar.h>
|
|
|
|
wint_t btowc(int c)
|
|
{
|
|
return c<128U ? c : EOF;
|
|
}
|