1 /* Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling */
6 #include "categories.h"
9 iswcntrl_l (wint_t c
, struct __locale_t
*locale
)
12 c
= _jp2uc_l (c
, locale
);
13 enum category cat
= category (c
);
15 || cat
== CAT_Zl
|| cat
== CAT_Zp
// Line/Paragraph Separator
18 return c
< 0x100 ? iscntrl (c
) : 0;
19 #endif /* _MB_CAPABLE */