isascii.c (98B)
1 #define __USE_MACROS 2 #include <ctype.h> 3 #undef isascii 4 5 int 6 isascii(int c) 7 { 8 return c <= 0x7f; 9 }