shithub: sl

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