:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / mbstring / isuppr.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 // code page 952 only
15 int _ismbcupper( unsigned int c )
16 {
17         if ((c & 0xFF00) != 0) {
18                 if ( c >= 0x8260 && c<= 0x8279 )
19                         return 1;
20         }
21
22         return isupper(c);
23 }