home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / S / SMC21LIB.LZH / ISUPPER.C < prev    next >
Text File  |  2000-06-30  |  256b  |  14 lines

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