Go to the first, previous, next, last section, table of contents.


strlwr

Syntax

#include <string.h>

char *strlwr(char *string);

Description

This function replaces all upper case letters in string with lower case letters.

Return Value

The string.

Portability

not ANSI, not POSIX

Example

char buf[100] = "Hello";
strlwr(buf);


Go to the first, previous, next, last section, table of contents.