mirror of
https://github.com/reactos/reactos.git
synced 2025-07-04 14:31:21 +00:00
47 lines
652 B
C
47 lines
652 B
C
![]() |
/*
|
||
|
* COPYRIGHT: See COPYING in the top level directory
|
||
|
* PROJECT: ReactOS system libraries
|
||
|
* FILE: lib/msvcrt/mbstring/ischira.c
|
||
|
* PURPOSE:
|
||
|
* PROGRAMER: Ariadne
|
||
|
* UPDATE HISTORY:
|
||
|
* 12/04/99: Created
|
||
|
*/
|
||
|
|
||
|
#include <mbstring.h>
|
||
|
#include <mbctype.h>
|
||
|
|
||
|
|
||
|
/*
|
||
|
* @implemented
|
||
|
*/
|
||
|
int _ismbchira( unsigned int c )
|
||
|
{
|
||
|
return ((c>=0x829F) && (c<=0x82F1));
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* @implemented
|
||
|
*/
|
||
|
int _ismbckata( unsigned int c )
|
||
|
{
|
||
|
return ((c>=0x8340) && (c<=0x8396));
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* @unimplemented
|
||
|
*/
|
||
|
unsigned int _mbctohira( unsigned int c )
|
||
|
{
|
||
|
return c;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* @unimplemented
|
||
|
*/
|
||
|
unsigned int _mbctokata( unsigned int c )
|
||
|
{
|
||
|
return c;
|
||
|
}
|
||
|
|