strlwr

Microsoft-specific C function - not part of ANSI C

Syntax

char* strlwr(char* str)

Arguments

str
The string to change to lower case.

Return

A pointer to the modified string.

Description

Converts a string to lower case. Note that this function modifies the original string.

Also see

strupr