musl - an implementation of the standard library for Linux-based systems
blob: d6353ee17935779719cc78eb0e730b0eb0265570 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include <stdio.h>
#include <wchar.h>
int wctob(wint_t c)
{
if (c < 128U) return c;
return EOF;
}
|