URI: 
       islower.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
       ---
       islower.c (88B)
       ---
            1 #include <ctype.h>
            2 
            3 #undef islower
            4 
            5 int
            6 islower(int c)
            7 {
            8         return (__ctype+1)[c] & _L;
            9 }