shithub: femtolisp

ref: 1cca028c935fb4b59ec19c570be7a4d1425f8cf1
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);
}