aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/libc_compat/ubuntu_14/mbrtoc32.c
blob: e7189170c4d6b0f220a5ac3fe6c6b2ae26b4e66e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <uchar.h> 
#include <wchar.h> 
 
size_t mbrtoc32(char32_t *restrict pc32, const char *restrict s, size_t n, mbstate_t *restrict ps) 
{ 
	static unsigned internal_state; 
	if (!ps) ps = (void *)&internal_state; 
	if (!s) return mbrtoc32(0, "", 1, ps); 
	wchar_t wc; 
	size_t ret = mbrtowc(&wc, s, n, ps); 
	if (ret <= 4 && pc32) *pc32 = wc; 
	return ret; 
}