Home
       isblank.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       isblank.c (78B)
       ---
            1 #include <ctype.h>
            2 
            3 int
            4 isblank(int c)
            5 {
            6         return (c == ' ') || (c == '\t');
            7 }