aboutsummaryrefslogtreecommitdiff
path: root/vendor/librune/lib/rtype/risdigit.c
blob: dc5d42c39899413c478fc83a5504d57656d22490 (plain) (blame)
1
2
3
4
5
6
7
#include "rtype.h"

bool
risdigit(rune ch)
{
	return rprop_get_gc(ch) & GC_ND;
}