ISSPACE
#define ISSPACE(c) (isascii (c) && isspace (c))
# define ISSPACE(Ch) iswspace (Ch)
# define ISSPACE(Ch) isspace_l (Ch, loc)
# define ISSPACE(Ch) __iswspace_l ((Ch), loc)
# define ISSPACE(Ch) iswspace (Ch)
# define ISSPACE(Ch) __isspace_l ((Ch), loc)
# define ISSPACE(Ch) isspace (Ch)
# define ISSPACE(Ch) __iswspace_l ((Ch), loc)
# define ISSPACE(Ch) iswspace (Ch)
# define ISSPACE(Ch) __isspace_l ((Ch), loc)
# define ISSPACE(Ch) (IN_CTYPE_DOMAIN (Ch) && isspace (Ch))