mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
27 lines
550 B
C
27 lines
550 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/sdk/crt/mbstring/ismbpun.c
|
|
* PURPOSE:
|
|
* PROGRAMER:
|
|
* UPDATE HISTORY:
|
|
* 05/30/08: Samuel Serapion adapted from PROJECT C Library
|
|
*
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int _ismbbpunct(unsigned int c)
|
|
{
|
|
// (0xA1 <= c <= 0xA6)
|
|
return (get_mbcinfo()->mbctype[c & 0xff] & _MBPUNCT);
|
|
}
|
|
|
|
//iskana() :(0xA1 <= c <= 0xDF)
|
|
//iskpun() :(0xA1 <= c <= 0xA6)
|
|
//iskmoji() :(0xA7 <= c <= 0xDF)
|