Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
islower.c
Go to the documentation of this file.
1 // Pulled from musl libc, locale support removed
2 
3 #include <ctype.h>
4 
5 int islower(int c)
6 {
7  return (unsigned)c - 'a' < 26;
8 }
int islower(int c)
Checks if the given character is classified as a lowercase character.
Definition: islower.c:5