Lstrlwr

Converts a string to a lowercase equivalent.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

  #include <string.h> 
  
  char *Lstrlwr (
     char   *str);
  

Parameters

str

(IN) Points to the string to convert to lowercase characters.

Return Values

Returns a pointer to the converted string.

Remarks

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.

See Also

Lstrupr