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