musl-tcc/src/multibyte/wctob.c
2022-03-20 16:48:53 +08:00

12 lines
206 B
C

#include <wchar.h>
#include <stdio.h>
#include <stdlib.h>
#include "internal.h"
int wctob(wint_t c)
{
if (c < 128U) return c;
if (MB_CUR_MAX==1 && IS_CODEUNIT(c)) return (unsigned char)c;
return EOF;
}