shithub: femtolisp

ref: acc691da05c16e097220430143ea7cab2cc3465e
dir: /3rd/utf/runetotype.c/

View raw version
#include "platform.h"
#include "runetotypedata"

Rune
toupperrune(Rune c)
{
	return c + upperlkup(c);
}

Rune
tolowerrune(Rune c)
{
	return c + lowerlkup(c);
}

Rune
totitlerune(Rune c)
{
	return c + titlelkup(c);
}