iswspace
static bool is_del(char_type a) { return iswspace(a); }
extern int iswspace(wint_t wc);
((iswspace(c) && (nextc == L'\r' || nextc == L'\n')) ||
(!iswspace(c) && (c < 33 || (c > 60 && c < 62) || c > 126)) ||
# define ISSPACE(Ch) iswspace (Ch)
# define ISSPACE(Ch) iswspace (Ch)
# define ISSPACE(Ch) iswspace (Ch)
if (iswspace(i))