7 lines
88 B
C
7 lines
88 B
C
#include <ctype.h>
|
|
#undef isupper
|
|
|
|
int isupper(int c)
|
|
{
|
|
return (unsigned)c-'A' < 26;
|
|
}
|