xref: /haiku/src/system/libroot/posix/wchar/mbsinit.c (revision a127b88ecbfab58f64944c98aa47722a18e363b2)
1 /*
2 ** Copyright 2011, Oliver Tappe, zooey@hirschkaefer.de. All rights reserved.
3 ** Distributed under the terms of the MIT License.
4 */
5 
6 #include <wchar_private.h>
7 
8 
9 int
10 __mbsinit(const mbstate_t* ps)
11 {
12 	return ps == NULL || ps->count == 0;
13 }
14 
15 
16 B_DEFINE_WEAK_ALIAS(__mbsinit, mbsinit);
17