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