home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 1 / GoldFishApril1994_CD1.img / d1xx / d164 / c-functions / lower.c < prev    next >
C/C++ Source or Header  |  1988-11-22  |  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.