isascii.c 63 B

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