home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff319.lzh
/
CNewsSrc
/
cnews.orig.lzh
/
libcnews
/
strlower.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-06-27
|
175b
|
14 lines
/*
* make a string all lower-case.
*/
#include <ctype.h>
strlower(s)
register char *s;
{
for (; *s != '\0'; ++s)
if (isascii(*s) && isupper(*s))
*s = tolower(*s);
}