home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / pdc / libsrc / stringlib / tolower.c < prev    next >
Encoding:
Text File  |  1990-04-07  |  196 b   |  12 lines

  1. /*
  2.  * PDC I/O Library Copyright (C) 1988 by J.A. Lydiatt.
  3.  * Freely Distributable for non-commercial use.
  4.  */
  5. char tolower(c)
  6. char c;
  7. {
  8.     if ( 'A' <= c && c <= 'Z' )
  9.         c += 'a' - 'A';
  10.     return c;
  11. }
  12.