update for HEAD-2003091401
[reactos.git] / lib / crtdll / mbstring / islwr.c
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS system libraries
4  * FILE:        lib/crtdll/mbstring/mbsncmp.c
5  * PURPOSE:     
6  * PROGRAMER:   Boudewijn Dekker
7  * UPDATE HISTORY:
8  *              12/04/99: Created
9  */
10
11 #include <msvcrt/mbctype.h>
12 #include <msvcrt/ctype.h>
13
14 /*
15  * code page 952 only
16  *
17  * @implemented
18  */
19 int _ismbclower( unsigned int c )
20 {
21         if ((c & 0xFF00) != 0) {
22                 if ( c >= 0x829A && c<= 0x829A )
23                         return 1;
24         }
25
26         return islower(c);
27 }