#include "internal.h" // Upper will force all runes in the string to be uppercase. void strĀ·upper(string s) { byte *b, *e; b = s; e = b + strĀ·len(s); while (b++ != e) *b = toupper(*b); }