#include #undef isgraph int isgraph(int c) { return (c >= 33) && (c < 0x7f); }