Newer
Older
ubixos / Dump / hybos / lib / char / islower.c
@cwolsen cwolsen on 31 Oct 2018 92 bytes Big Dump
#include <stdbool.h>

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