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