blob: 5f049efe2da396ffb3d84faea54bbf3058e44974 [file] [log] [blame]
#ifdef CONFIG_H
#include <config.h>
#endif
#ifndef HAVE_STRLWR
#include <ctype.h>
#include "compat_string.h"
char *strlwr(char *s) {
while (*s != '\0') {
*s = tolower(*s);
s++;
}
return s;
}
#endif /* HAVE_STRLWR */