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


tolower

Syntax

#include <ctype.h>

int tolower(int c);

Description

This function returns c, converting it to lower case if it is upper case. See section toupper.

Return Value

The lower case letter.

Portability

ANSI, POSIX

Example

for (i=0; buf[i]; i++)
  buf[i] = tolower(buf[i]);


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