home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / libcnews / strlower.c < prev    next >
C/C++ Source or Header  |  1987-08-03  |  175b  |  14 lines

  1. /*
  2.  * make a string all lower-case.
  3.  */
  4.  
  5. #include <ctype.h>
  6.  
  7. strlower(s)
  8. register char *s;
  9. {
  10.     for (; *s != '\0'; ++s)
  11.         if (isascii(*s) && isupper(*s))
  12.             *s = tolower(*s);
  13. }
  14.