110b9a828a0de879652eadb42c36816652c68f5e
[reactos.git] / reactos / 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 }