📄 ismblgl.c
字号:
/***
*ismblgl.c - Tests to see if a given character is a legal MBCS char.
*
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Tests to see if a given character is a legal MBCS character.
*
*******************************************************************************/
#ifdef _MBCS
#include <cruntime.h>
#include <mbdata.h>
#include <mbctype.h>
#include <mbstring.h>
/***
*int _ismbclegal(c) - tests for a valid MBCS character.
*
*Purpose:
* Tests to see if a given character is a legal MBCS character.
*
*Entry:
* unsigned int c - character to test
*
*Exit:
* returns non-zero if Microsoft Kanji code, else 0
*
*Exceptions:
*
******************************************************************************/
int __cdecl _ismbclegal(c)
unsigned int c;
{
return((_ISLEADBYTE(c>>8)) && (_ISTRAILBYTE(c&0377)));
}
#endif /* _MBCS */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -