char* axl_stream_to_upper ( char *  chunk  ) 

Makes the provided string to be converted to upper case letters.

The function will modify the address provided. If you want to get a upper case copy for a particular string, copy it first, by using axl_strdup, and then use this function.

The function, for convenience, will also return the string reference received, already modified. This could be used while using this function to convert parameters that are expected by other functions.

Parameters:
chunk The chunk to upper case.