summaryrefslogtreecommitdiff
path: root/src/locale/iswctype_l.c
blob: be222d36cdf07ff6a967bd1f7bdb59c2ad02aa0f (plain) (blame)
1
2
3
4
5
6
#include <wctype.h>

wint_t iswctype_l(wint_t c, wctype_t t, locale_t l)
{
	return iswctype(c, t);
}