#include <precomp.h>
#include <mbctype.h>
Go to the source code of this file.
◆ _ismbchira()
Definition at line 7 of file ischira.c.
12 return (
c >= 0x829f &&
c <= 0x82f1);
MSVCRT_pthreadmbcinfo get_mbcinfo(void)
Referenced by _mbctokata().
◆ _ismbckata()
Definition at line 20 of file ischira.c.
25 return (
c >= 0x8340 &&
c <= 0x8396 &&
c != 0x837f);
MSVCRT_pthreadmbcinfo get_mbcinfo(void)
Referenced by _mbctohira().
◆ _mbctohira()
Definition at line 35 of file ischira.c.
38 return (
c - 0x8340 - (
c >= 0x837f ? 1 : 0)) + 0x829f;
int CDECL _ismbckata(unsigned int c)
◆ _mbctokata()
Definition at line 47 of file ischira.c.
50 return (
c - 0x829f) + 0x8340 + (
c >= 0x82de ? 1 : 0);
int CDECL _ismbchira(unsigned int c)