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

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