blob: 90bea2b8f87c18457f22d90f6e4d09a36ec23f43 [file] [log] [blame]
#include <ctype.h>
#undef isascii
int isascii(int c) {
return !(c & ~0x7f);
}