shithub: femtolisp

ref: 34f94d8f686d27d00fcca2c4bc596d339fd3f5b0
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);
}