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