isgraph.c (98B)
1 #include <ctype.h> 2 #undef isgraph 3 4 int 5 isgraph(int c) 6 { 7 return (__ctype+1)[c] & (_P|_U|_L|_D); 8 }