#include"script.h" int main() { Str a( "AbCdEf" ); strToLower( a ); // a == "abcdef" strToUpper( a ); // a == "ABCDEF" }