(C) 1996 AROS - The Amiga Replacement OS
This function is patched by the locale.library, so you should be prepared for different results when running under different languages.
STRPTR string; UBYTE chr;
\* Convert a string to uppercase *\
while( chr = *string )
{
*string = ToUpper( chr );
string++;
}