home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / ISUPPER.C < prev    next >
Encoding:
Text File  |  1993-03-25  |  256 b   |  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.