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

wint_t iswcntrl_l(wint_t c, locale_t l)
{
	return iswcntrl(c);
}