Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / msvcrt / 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 #include <msvcrti.h>
11
12
13 int _ismbchira( unsigned int c )
14 {
15 return ((c>=0x829F) && (c<=0x82F1));
16 }
17
18 int _ismbckata( unsigned int c )
19 {
20 return ((c>=0x8340) && (c<=0x8396));
21 }
22
23 unsigned int _mbctohira( unsigned int c )
24 {
25 return c;
26 }
27
28 unsigned int _mbctokata( unsigned int c )
29 {
30 return c;
31 }
32