![]()  | 
![]()  | 
![]()  | 
![]()  | 
Convert a character to lowercase
#include <ctype.h> int tolower( int c );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The tolower() function converts c to a lowercase letter, if c represents an uppercase letter.
The corresponding lowercase letter when the argument is an uppercase letter; otherwise, the original character is returned.
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
char chars[] = {
    'A',
    '5',
    '$',
    'Z'
};
#define SIZE sizeof( chars ) / sizeof( char )
int main( void )
  {
    int   i;
    for( i = 0; i < SIZE; i++ ) {
    printf( "%c ", tolower( chars[ i ] ) );
    }
    printf( "\n" );
    return EXIT_SUCCESS;
  }
produces the output:
a 5 $ z
| Safety: | |
|---|---|
| Cancellation point | No | 
| Interrupt handler | Yes | 
| Signal handler | Yes | 
| Thread | Yes | 
isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), islower(), isprint(), ispunct(), isspace(), isupper(), isxdigit(), strlwr(), strupr(), toupper()
![]()  | 
![]()  | 
![]()  | 
![]()  |