xref
: /
third_party
/
musl
/
src
/
multibyte
/
mblen.c
(revision 570af302)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/musl/src/multibyte/
1
#
include
<
stdlib.h
>
2
3
int
mblen
(
const
char
*s,
size_t
n)
4
{
5
return
mbtowc
(0, s, n);
6
}
7