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

bool
rislower(rune ch)
{
	return rprop_get_gc(ch) & GC_LL;
}