[AUDIT]
[reactos.git] / reactos / lib / crt / mbstring / ismbkaln.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/msvcrt/mbstring/ismbkaln.c
5 * PURPOSE:
6 * PROGRAMER: Ariadne
7 * UPDATE HISTORY:
8 * 12/04/99: Created
9 */
10 #include <mbctype.h>
11 #include <ctype.h>
12 #include <internal/mbstring.h>
13 /*
14 * @implemented
15 */
16 int _ismbbkalnum( unsigned int c )
17 {
18 return ((_mbctype+1)[(unsigned char)(c)] & (_KNJ_P));
19 }