Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / msvcrt / ctype / islower.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrti.h>
3
4
5 #undef islower
6 int islower(int c)
7 {
8 return _isctype(c,_LOWER);
9 }
10
11 int iswlower(wint_t c)
12 {
13 return iswctype(c,_LOWER);
14 }