isgraph.c 206 B

123456789101112131415
  1. #include <ctype.h>
  2. #include "libc.h"
  3. #undef isgraph
  4. int isgraph(int c)
  5. {
  6. return (unsigned)c-0x21 < 0x5e;
  7. }
  8. int __isgraph_l(int c, locale_t l)
  9. {
  10. return isgraph(c);
  11. }
  12. weak_alias(__isgraph_l, isgraph_l);