?? mbsbtype.c
字號:
/***
*mbsbtype.c - Return type of byte within a string (MBCS)
*
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Return type of byte within a string (MBCS)
*
*******************************************************************************/
#ifdef _MBCS
#include <mtdll.h>
#include <cruntime.h>
#include <mbdata.h>
#include <mbstring.h>
#include <mbctype.h>
#define _MBBTYPE(p,c) _mbbtype(p,c)
/***
* _mbsbtype - Return type of byte within a string
*
*Purpose:
* Test byte within a string for MBCS char type.
* This function requires the start of the string because
* context must be taken into account.
*
*Entry:
* const unsigned char *string = pointer to string
* size_t len = position of the char in string
*
*Exit:
* returns one of the following values:
*
* _MBC_LEAD = if 1st byte of MBCS char
* _MBC_TRAIL = if 2nd byte of MBCS char
* _MBC_SINGLE = valid single byte char
*
* _MBC_ILLEGAL = if illegal char
*
*Exceptions:
* returns _MBC_ILLEGAL if len is bigger than string length
*
*******************************************************************************/
int __cdecl _mbsbtype(
const unsigned char *string,
size_t len
)
{
int chartype;
if ( _ISNOTMBCP )
return _MBC_SINGLE;
_mlock(_MB_CP_LOCK);
chartype = _MBC_ILLEGAL;
do {
if (*string == '\0')
{
_munlock(_MB_CP_LOCK);
return(_MBC_ILLEGAL);
}
chartype = _MBBTYPE(*string++, chartype);
} while (len--);
_munlock(_MB_CP_LOCK);
return(chartype);
}
#endif /* _MBCS */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -