ref: 439629f3f58c21dd056721107e4dadb3b6e0482f dir: /src/libc/ctype/islower.c/
#include <ctype.h> #undef islower int islower(int c) { return (__ctype+1)[c] & _L; }