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