2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 /*****************************************************************************
20 Converts a string to all upper case characters. Modifies
24 str - The string to convert.
27 The same string buffer is passed back with all characters converted.
39 ******************************************************************************/
43 if (str
[i
] >= 'a' && str
[i
] <= 'z')