master xplshn/aruu / shared / libutf / isxdigitrune.c
1/* Automatically generated by mkrunetype.awk */
2#include "../utf.h"
3#include "runetype.h"
4
5int
6isxdigitrune(Rune r)
7{
8	return (r >= '0' && (r - '0') < 10) || (r >= 'a' && (r - 'a') < 6);
9}