iswprint_l.c 83 B

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