#include #undef isascii int isascii(int c) { return !(c&~0x7f); } #ifdef TEST int main(void) { return 0; } #endif