1 /* Modified (m) 2017 Thomas Wolff: revise Unicode and locale/wchar handling */
6 #include "categories.h"
9 iswblank_l (wint_t c
, struct __locale_t
*locale
)
12 c
= _jp2uc_l (c
, locale
);
13 enum category cat
= category (c
);
14 // exclude "<noBreak>"?
18 return c
< 0x100 ? isblank (c
) : 0;
19 #endif /* _MB_CAPABLE */