1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#include <u.h> #include <libc.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); }