tolower()

#include <ctype.h>

int tolower( int character );

This function converts character from uppercase to lowercase . If character is not 'A' through 'Z' tolower() will simply return character.


Back to Essential C Functions.