shithub: femtolisp

ref: f001b95402211734a1a6ac053e73fb4183ee7958
dir: /3rd/utf/runetotype.c/

View raw version
#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);
}