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