home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / mklib.lzh / MKLIB / EDLIB / STOLOWER.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-16  |  289 b   |  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.