mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
813 B
42 lines
813 B
/***
|
|
*mbclen.c - Find length of MBCS character
|
|
*
|
|
* Copyright (c) 1985-1993, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* Find length of MBCS character
|
|
*
|
|
*Revision History:
|
|
* 04-12-93 KRS Created.
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#include <cruntime.h>
|
|
#include <mbdata.h>
|
|
#include <mbctype.h>
|
|
#include <mbstring.h>
|
|
#include <stddef.h>
|
|
|
|
|
|
/***
|
|
* _mbclen - Find length of MBCS character
|
|
*
|
|
*Purpose:
|
|
* Find the length of the MBCS character (in bytes).
|
|
*
|
|
*Entry:
|
|
* unsigned char *c = MBCS character
|
|
*
|
|
*Exit:
|
|
* Returns the number of bytes in the MBCS character
|
|
*
|
|
*Exceptions:
|
|
*
|
|
*******************************************************************************/
|
|
|
|
size_t _CRTAPI1 _mbclen(c)
|
|
const unsigned char *c;
|
|
|
|
{
|
|
return (_ISLEADBYTE(*c)) ? 2 : 1;
|
|
}
|