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

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