blob: 3489a90b3c047a4cc4399de6f2a8530fe7b84aff [file] [log] [blame]
#include <ctype.h>
#undef isgraph
int isgraph(int c) {
return (unsigned)c - 0x21 < 0x5e;
}