home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / ISUPPER.C < prev    next >
Text File  |  1987-10-04  |  128b  |  7 lines

  1. /*
  2. ** return 'true' if c is upper-case alphabetic
  3. */
  4. isupper(c) int c; {
  5.   return (c<='Z' && c>='A');
  6.   }
  7.