blob: fbf36d929879e9ca3cbd8c879f6e2ab64941e374 [file] [log] [blame]
#ifdef CONFIG_H
#include <config.h>
#endif
#ifndef HAVE_STRLWER
#include <ctype.h>
#include "compat-string.h"
char *strlwr(char *s) {
while(*s != '\x0') {
*s = tolower(*s);
s++;
}
return s;
}
#endif /* HAVE_STRLWER */