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