ref: de505b2650948c2f4ada5368eaf8a019cf1099bc dir: /lib/c/islower.c/
#define __USE_MACROS #include <ctype.h> #undef islower int islower(int c) { return (__ctype+1)[c] & _L; }