- Name
-
islower -- check if character is a lower case letter (V7.0)
- Synopsis
-
int r = islower(int c);
- Function
-
Checks if the Unicode character passed in
c
is a lower case letter and returns
True
if it is, otherwise False
.
- Designer compatibility
-
Unsupported
- Inputs
-
- c
- character to test
- Results
-
- r
- test result
Show TOC