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
}
ctype.h
islower
int islower(int c)
Checks if the given character is classified as a lowercase character.
Definition:
islower.c:5
src
ctype
islower.c
Generated by
1.8.15