2 ** Copyright 2011, Oliver Tappe, zooey@hirschkaefer.de. All rights reserved.
3 ** Distributed under the terms of the Haiku License.
8 #include <errno_private.h>
9 #include <wchar_private.h>
13 __mbtowc(wchar_t* pwc
, const char* s
, size_t n
)
15 static mbstate_t internalMbState
;
17 int result
= __mbrtowc(pwc
, s
, n
, &internalMbState
);
27 B_DEFINE_WEAK_ALIAS(__mbtowc
, mbtowc
);