blob: d6353ee17935779719cc78eb0e730b0eb0265570 [file] [log] [blame]
#include <stdio.h>
#include <wchar.h>
int wctob(wint_t c)
{
if (c < 128U) return c;
return EOF;
}