ref: 603e53b509dd59e5dc1e1a1f1f9a31197e4bc655
dir: /3rd/utf/runetotype.c/
#include "platform.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);
}