#include <string.h> char *strlwr(char *string);
This function replaces all upper case letters in string with lower case letters.
The string.
not ANSI, not POSIX
char buf[100] = "Hello"; strlwr(buf);
Go to the first, previous, next, last section, table of contents.