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