#include #undef iscntrl int iscntrl(int c) { return (c < 32) || (c >= 0x7f); }