10 lines
106 B
C
10 lines
106 B
C
#include <wchar.h>
|
|
#include <stdio.h>
|
|
|
|
#undef wctob
|
|
|
|
int wctob(wint_t c)
|
|
{
|
|
return c & ~0x7f ? EOF : c;
|
|
}
|