Newer
Older
ubixos / Dump / hybos / lib / char / islower.c
@Christopher W. Olsen Christopher W. Olsen on 5 Nov 2018 86 bytes Sync
#include <stdbool.h>

bool islowwer(const char c)
{
	return (c >= 'a' && c <= 'z');
}