#include <ctype.h> int tolower(int c);
This function returns c, converting it to lower case if it is upper case. See section toupper.
The lower case letter.
ANSI, POSIX
for (i=0; buf[i]; i++) buf[i] = tolower(buf[i]);
Go to the first, previous, next, last section, table of contents.