/*
 * 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);
}


syntax highlighted by Code2HTML, v. 0.9.1