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

bool isxdigit(const char c)
{
	return ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'));
}