 CARM User's Guide Discontinued |
|
| islower| Summary | | | Description | The islower function tests c to determine if it is a lowercase alphabetic character ('a'-'z'). | | Return Value | The islower function returns a value of 1 if c is a lowercase alphabetic character or a value of 0 if it is not. | | See Also | isalnum, isalpha, iscntrl, isdigit, isgraph, isprint, ispunct, isspace, isupper, isxdigit | | Example |
#include <ctype.h>
#include <stdio.h> /* for printf */
void tst_islower (void) {
unsigned char i;
char *p;
for (i = 0; i < 128; i++) {
p = (islower (i) ? "YES" : "NO");
printf ("islower (%c) %s\n", i, p);
}
}
|
|
|