mirror of
https://github.com/fluencelabs/musl
synced 2025-05-20 19:21:34 +00:00
8 lines
88 B
C
8 lines
88 B
C
|
#include <ctype.h>
|
||
|
#undef isupper
|
||
|
|
||
|
int isupper(int c)
|
||
|
{
|
||
|
return (unsigned)c-'A' < 26;
|
||
|
}
|