#include <ctype.h>

// 20070524 bkw: Linux and POSIX lack the DOS/Windows strlwr() function,
// so here's an implementation.

void strlwr(char *s) {
	while(*s) {
		*s = tolower(*s);
		s++;
	}
}