1 #include <ctype.h>
2 #undef isascii
3 
isascii(int c)4 int isascii(int c)
5 {
6 	return !(c&~0x7f);
7 }
8