Replaces each character of a string with its uppercase equivalent.
#include <string.h>
char *Lstrupr (
char *s1);
(IN) Points to the string to convert to uppercase characters.
Returns the address of the original string.
The Lstrupr function is a double-byte character interface. It replaces the string s1 with uppercase characters by invoking the towupper function for each character in the string.