mirror of
https://github.com/fluencelabs/musl
synced 2025-06-03 18:11:40 +00:00
9 lines
101 B
C
9 lines
101 B
C
|
#include <stdio.h>
|
||
|
#include <wchar.h>
|
||
|
|
||
|
int wctob(wint_t c)
|
||
|
{
|
||
|
if (c < 128U) return c;
|
||
|
return EOF;
|
||
|
}
|