--- a/str.h Fri Jul 13 18:41:40 2012 +0300 +++ b/str.h Fri Jul 13 20:10:08 2012 +0300 @@ -126,6 +126,12 @@ // Is the string a word, i.e consists only of alphabetic letters? bool isword (); + // Convert string to lower case + str tolower (); + + // Convert string to upper case + str toupper (); + bool contentcheck (int flags); int compare (const char* c);