strlwr

Converts a string to lowercase equivalent.

Library:LibC
Classification:Other
Service:Characters and Strings

Syntax

  #include <string.h> 
  
  char *strlwr (
     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 strlwr function replaces str with lowercase characters, by invoking the tolower function for each character in the string.

See Also

strupr