musl/src/multibyte/wctob.c

9 lines
101 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <stdio.h>
#include <wchar.h>
int wctob(wint_t c)
{
if (c < 128U) return c;
return EOF;
}