Table of Contents
Previous Section Next Section

tolower

#include <ctype.h>int tolower(int ch);

The tolower( ) function returns the lowercase equivalent of ch if ch is a letter; otherwise, ch is returned unchanged.

A related function is toupper( ).


Table of Contents
Previous Section Next Section