Sign in
cobalt
/
cobalt
/
08336faa599332e3e3bf29b7ad38ef023018b55e
/
.
/
third_party
/
musl
/
src
/
multibyte
/
wctob.c
blob: b484a3fd01ad75b829b4be6eff710fd1a0fb31c4 [
file
] [
log
] [
blame
]
#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
;
}