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

  1. /*
  2. ** return lower-case of c if upper-case, else c
  3. */
  4. tolower(c) int c; {
  5.   return(c<='Z' && c>='A' ? c+32 : c);
  6.   }
  7.