Converts a wide-character string to its lowercase equivalent.
#include <wchar.h>
wchar_t *wcslwr (
wchar_t *ws);
(IN) Points to the string to convert to lowercase characters.
Returns a pointer to the converted string.
The wcslwr function replaces str with lowercase characters, by invoking the towlower function for each character in the string.