scc

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

isblank.c (78B)


      1 #include <ctype.h>
      2 
      3 int
      4 isblank(int c)
      5 {
      6 	return (c == ' ') || (c == '\t');
      7 }