:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / ctype / islower.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2 #include <crtdll/ctype.h>
3
4 #undef islower
5 int islower(int c)
6 {
7   return _isctype(c,_LOWER);
8 }
9
10 int iswlower(wint_t c)
11 {
12   return iswctype(c,_LOWER);
13 }