ReactOS 0.4.15-dev-7834-g00c4b3d
iskana.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/sdk/crt/mbstring/iskana.c
5 * PURPOSE: Checks for kana character
6 * PROGRAMER:
7 * UPDATE HISTORY:
8 * 12/04/99: Ariadne, Taiji Yamada Created
9 * 05/30/08: Samuel Serapion adapted from PROJECT C Library
10 *
11 */
12
13#include <precomp.h>
14
15/*
16 * @implemented
17 */
18int _ismbbkana(unsigned int c)
19{
20 return (get_mbcinfo()->mbctype[c & 0xff] & _MBKANA);
21}
const GLubyte * c
Definition: glext.h:8905
int _ismbbkana(unsigned int c)
Definition: iskana.c:18
#define _MBKANA
Definition: mbstring.h:16
MSVCRT_pthreadmbcinfo get_mbcinfo(void)
Definition: locale.c:364