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

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