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

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