summaryrefslogtreecommitdiff
path: root/userland/libc/ctype/islower.c
blob: d3bed828e89c262a9105a871ca357481a4d2c567 (plain)
1
2
3
4
5
#include <ctype.h>

int islower(int c) {
  return (c >= 'a' && c <= 'z');
}