shithub: sl

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

View raw version
#include "platform.h"
#include "utf.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);
}