scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

isprint.c (102B)


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