shithub: sl

ref: 32a1b47da6fe0e872c66d2721ff221ff1a5e8ba8
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);
}