home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 216.lha / EdLib_v1.0 / stolower.c < prev    next >
C/C++ Source or Header  |  1996-02-15  |  289b  |  18 lines

  1. /* edlib  version 1.0 of 04/08/88 */
  2. /*
  3.     string to lower changes all upper case letters in a string to lower
  4.     case.
  5. */
  6. #include <ctype.h>
  7.  
  8. char *stolower(str)
  9. char *str;
  10. {
  11.     char *temp = str;
  12.  
  13.     for ( ; *temp ; temp++ )
  14.         *temp = (char) tolower(*temp);
  15.  
  16.     return(str);
  17. }
  18.