2007-03-14 20:24:57 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS system libraries
|
2008-06-06 17:49:24 +00:00
|
|
|
* FILE: lib/sdk/crt/mbstring/iskana.c
|
2007-03-14 20:24:57 +00:00
|
|
|
* PURPOSE: Checks for kana character
|
2008-06-06 17:49:24 +00:00
|
|
|
* PROGRAMER:
|
2007-03-14 20:24:57 +00:00
|
|
|
* UPDATE HISTORY:
|
2008-06-06 17:49:24 +00:00
|
|
|
* 12/04/99: Ariadne, Taiji Yamada Created
|
|
|
|
* 05/30/08: Samuel Serapion adapted from PROJECT C Library
|
|
|
|
*
|
2007-03-14 20:24:57 +00:00
|
|
|
*/
|
2008-06-06 17:49:24 +00:00
|
|
|
|
|
|
|
#include <precomp.h>
|
2007-03-14 20:24:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* @implemented
|
|
|
|
*/
|
|
|
|
int _ismbbkana(unsigned int c)
|
|
|
|
{
|
2008-06-06 17:49:24 +00:00
|
|
|
return (_mbctype[c & 0xff] & _MBKANA);
|
2007-03-14 20:24:57 +00:00
|
|
|
}
|