xref: /reactos/sdk/lib/crt/mbstring/isuppr.c (revision d6eebaa4)
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS system libraries
4  * FILE:        lib/sdk/crt/mbstring/isuppr.c
5  * PURPOSE:
6  * PROGRAMER:
7  * UPDATE HISTORY:
8  *              12/04/99: Ariadne Created
9  *              05/30/08: Samuel Serapion adapted from PROJECT C Library
10  *
11  */
12 
13 #include <precomp.h>
14 
15 /*
16  * @implemented
17  */
18 int _ismbcupper( unsigned int c )
19 {
20     return ((c) >= 0x8260 && (c) <= 0x8279);
21 }
22