www.delorie.com/djgpp/doc/libc-2.01/libc_658.html   search  
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.

Example

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


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

  prev next   webmaster     delorie software   privacy  
  Copyright © 1997     Updated Apr 1997