isupper.c 88 B

1234567
  1. #include <ctype.h>
  2. #undef isupper
  3. int isupper(int c)
  4. {
  5. return (unsigned)c-'A' < 26;
  6. }