home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 206.lha / C-Functions / upper.c < prev   
C/C++ Source or Header  |  1996-02-14  |  185b  |  10 lines

  1.  
  2. #include <exec/types.h>
  3.  
  4. int upper(c)       /* Convert c to upper case; non-Swedish ASCII only */
  5. register int c;
  6.    {
  7.    return ((c >= 'a' && c <= 'z') ? (c - 'a' + 'A') : c );
  8.    }
  9.  
  10.