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

bool isupper(const char c)
{
	return (c >= 'A' && c <= 'Z');
}