home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 221_01 / tolower.c < prev    next >
Encoding:
Text File  |  1979-12-31  |  256 b   |  8 lines

  1. /*
  2. **  convert c to lower case
  3. */
  4. tolower(c) char c; {
  5.   if(isupper(c) & isalpha(c)) return (c+32);
  6.   else return c;
  7.   }
  8.