shithub: femtolisp

ref: 16807df966dc78dc9f11355f1cf18c88dc7c1253
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);
}