musl/src/multibyte/wctob.c
2011-02-12 00:22:29 -05:00

9 lines
101 B
C

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