10 lines
189 B
C
10 lines
189 B
C
|
/* Automatically generated by mkrunetype.awk */
|
||
|
#include "../utf.h"
|
||
|
#include "runetype.h"
|
||
|
|
||
|
int
|
||
|
isxdigitrune(Rune r)
|
||
|
{
|
||
|
return (r >= '0' && (r - '0') < 10) || (r >= 'a' && (r - 'a') < 6);
|
||
|
}
|