1 #include <wchar.h> 2 #include <wctype.h> 3 #include <ctype.h> 4 iswblank(wint_t wc)5 int iswblank(wint_t wc) 6 { 7 return isblank(wc); 8 } 9