scc

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

isspace.c (88B)


      1 #include <ctype.h>
      2 
      3 #undef isspace
      4 
      5 int
      6 isspace(int c)
      7 {
      8 	return (__ctype+1)[c] & _S;
      9 }