Sign in
mingw
/
mingw-w64
/
ac131acf1420fff7157d6cd613a5a70fc35001af
/
.
/
mingw-w64-tools
/
gendef
/
src
/
compat_string.c
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 */