strlwr() Convert String to Lower Case
#include <string.h> Required for declarations only
char *strlwr(string);
char *string; String to be converted
strlwr() converts all uppercase letters in 'string' to lowercase.
Other characters are not affected.
Returns: A pointer to 'string'. There is no error return.
-------------------------------- Example ---------------------------------
This example converts all the letters in 'str' to lowercase.
#include <string.h>
char str1[128] = "Some UPPERS and some lowers";
main()
{
strlwr(str1);
}
Seealso:
This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster