home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / compat / string / strlwr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-11  |  233 b   |  16 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <ctype.h>
  3. #include <string.h>
  4.  
  5. char *
  6. strlwr(char *_s)
  7. {
  8.   char *rv = _s;
  9.   while (*_s)
  10.   {
  11.     *_s = tolower(*_s);
  12.     _s++;
  13.   }
  14.   return rv;
  15. }
  16.