e515354c23c160013c0ca1081883d45412d60f32
[reactos.git] / lib / crtdll / mbstring / iskpun.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 <crtdll/mbctype.h>
11
12 int _ismbbkpunct( unsigned int c )
13 {
14         return  ((_jctype+1)[(unsigned char)(c)] & (_KNJ_P));
15 }