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