shithub: sl

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