int
wcswidth(const wchar_t *pwcs, size_t n)
{
	return wcswidth_l(pwcs, n, __get_locale());
}
Exemple #2
0
int
wcswidth(const wchar_t *s, size_t n)
{
	return (wcswidth_l(s, n, __get_locale()));
}