Files
semi-libc/src/multibyte/wctob.c
T

9 lines
101 B
C

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