shithub: sl

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