mirror of
https://github.com/fluencelabs/musl
synced 2025-06-02 01:21:34 +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;
|
|
}
|