summaryrefslogtreecommitdiff
path: root/lib/libc/ctype/islower.c
blob: a6108e39cad6dea3e28dad5c3fd10d68abb88275 (plain)
1
2
3
4
5
6
7
8
#include <libc.h> // for weak_reference

int islower(int c)
{
	return (unsigned)c - 'a' < 26;
}

weak_reference(islower, islower_l);