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