home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / d / dec92.zip / 1012074C < prev    next >
Text File  |  1992-10-13  |  236b  |  17 lines

  1. /* strlwr.c:    Convert a string to lower case */
  2.  
  3. #include <ctype.h>
  4.  
  5. char *strlwr(char *s)
  6. {
  7.     if (s != NULL)
  8.     {
  9.         char *p;
  10.  
  11.         for (p = s; *p; ++p)
  12.             *p = tolower(*p);
  13.     }
  14.     return s;
  15. }
  16.  
  17.