iswcntrl_l.c 83 B

123456
  1. #include <wctype.h>
  2. int iswcntrl_l(wint_t c, locale_t l)
  3. {
  4. return iswcntrl(c);
  5. }