islower()

#include <ctype.h>

int islower( int character );

This functions returns a nonzero integer if character is a l owercase character ( 'a' through 'z' ). Otherwise, it returns 0.


Back to Essential C Functions.