مشاركة عبر


_ismbbalpha, _ismbbalpha_l

Determines whether a particular multibyte character is alpha.

int _ismbbalpha(
   unsigned int c 
);
int _ismbbalpha_l(
   unsigned int c 
);

Parámetros

  • c
    Integer to be tested.

  • locale
    Locale to use.

Valor devuelto

_ismbbalpha returns a nonzero value if the expression:

isalpha || _ismbbkalnum

is nonzero for c, or 0 if it is not. _ismbbalpha uses the current locale for any locale-dependent character settings. _ismbbalpha_l is identical except that it uses the locale passed in.

Requisitos

Routine

Required header

_ismbbalpha

<mbctype.h>

_ismbbalpha_l

<mbctype.h>

For more compatibility information, see Compatibility in the Introduction.

Libraries

All versions of the C run-time libraries.

Equivalente en .NET Framework

Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.

Vea también

Referencia

Byte Classification

_ismbb Routines