update for HEAD-2003091401
[reactos.git] / lib / crtdll / mbstring / ischira.c
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS system libraries
4  * FILE:        lib/crtdll/mbstring/ischira.c
5  * PURPOSE:     
6  * PROGRAMER:   Boudewijn Dekker
7  * UPDATE HISTORY:
8  *              12/04/99: Created
9  */
10
11 #include <msvcrt/mbstring.h>
12 #include <msvcrt/mbctype.h>
13
14
15 /*
16  * @implemented
17  */
18 int _ismbchira(unsigned int c)
19 {
20         return ((c>=0x829F) && (c<=0x82F1));
21 }
22
23 /*
24  * @implemented
25  */
26 int _ismbckata(unsigned int c)
27 {
28         return ((c>=0x8340) && (c<=0x8396));
29 }
30
31 /*
32  * @implemented
33  */
34 unsigned int _mbctohira(unsigned int c)
35 {
36         return c;
37 }
38
39 /*
40  * @implemented
41  */
42 unsigned int _mbctokata(unsigned int c)
43 {
44         return c;
45 }
46