scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

isprint.c (123B)


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