home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / TOLOWER.C < prev    next >
Text File  |  1987-10-04  |  256b  |  8 lines

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