Newer
Older
UbixOS / Dump / hybos / lib / char / isalpha.c
@cwolsen cwolsen on 31 Oct 2018 119 bytes Big Dump
#include <stdbool.h>

bool isalpha(const char c)
{
	return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'));
}