Converts a string to a lowercase equivalent.
#include <string.h>
char *Lstrlwr (
char *str);
(IN) Points to the string to convert to lowercase characters.
Returns a pointer to the converted string.
The Lstrlwr function is a double-byte character interface. It replaces str with lowercase characters, by invoking the towlower function for each character in the string.