#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 = toupper(*b); }