[AUDIT]
[reactos.git] / reactos / lib / crt / mbstring / isuppr.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/msvcrt/mbstring/isuppr.c
5 * PURPOSE:
6 * PROGRAMER: Ariadne
7 * UPDATE HISTORY:
8 * 12/04/99: Created
9 */
10
11 #include <precomp.h>
12
13 /*
14 * code page 952 only
15 *
16 * @implemented
17 */
18 int _ismbcupper( unsigned int c )
19 {
20 if ((c & 0xFF00) != 0) {
21 if ( c >= 0x8260 && c<= 0x8279 )
22 return 1;
23 }
24
25 return isupper(c);
26 }