Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / crtdll / mbstring / ismbkaln.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/crtdll/mbstring/iskpun.c
5 * PURPOSE:
6 * PROGRAMER: Boudewijn Dekker
7 * UPDATE HISTORY:
8 * 12/04/99: Created
9 */
10 #include <msvcrt/mbctype.h>
11 #include <msvcrt/ctype.h>
12
13 int _ismbbkalnum( unsigned int c )
14 {
15 return ((_jctype+1)[(unsigned char)(c)] & (_KNJ_P));
16 }