1#include <ctype.h>
2#undef isgraph
3
4int isgraph(int c) {
5    return (unsigned)c - 0x21 < 0x5e;
6}
7