2 ** Copyright 2011, Oliver Tappe, zooey@hirschkaefer.de. All rights reserved.
3 ** Distributed under the terms of the Haiku License.
6 #include <wchar_private.h>
10 __mbrlen(const char* s
, size_t n
, mbstate_t* ps
)
13 static mbstate_t internalMbState
;
14 ps
= &internalMbState
;
17 return __mbrtowc(NULL
, s
, n
, ps
);
21 B_DEFINE_WEAK_ALIAS(__mbrlen
, mbrlen
);