ref: 6bfa81bb6a4343f3efdf6d086d404c36982a80fd
dir: /3rd/utf/runetotype.c/
#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);
}