ReactOS 0.4.15-dev-7906-g1b85a5f
ismbpun.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/ismbpun.c
5 * PURPOSE:
6 * PROGRAMER:
7 * UPDATE HISTORY:
8 * 05/30/08: Samuel Serapion adapted from PROJECT C Library
9 *
10 */
11
12#include <precomp.h>
13
14
15/*
16 * @implemented
17 */
18int _ismbbpunct(unsigned int c)
19{
20// (0xA1 <= c <= 0xA6)
21 return (get_mbcinfo()->mbctype[c & 0xff] & _MBPUNCT);
22}
23
24 //iskana() :(0xA1 <= c <= 0xDF)
25 //iskpun() :(0xA1 <= c <= 0xA6)
26 //iskmoji() :(0xA7 <= c <= 0xDF)
const GLubyte * c
Definition: glext.h:8905
int _ismbbpunct(unsigned int c)
Definition: ismbpun.c:18
#define _MBPUNCT
Definition: mbstring.h:18
MSVCRT_pthreadmbcinfo get_mbcinfo(void)
Definition: locale.c:364