isascii
isascii(int c)
# define isascii(c) (!(c & 0200))
isascii(int ch)
#define isascii(c) ((unsigned)(c) <= 0177)