mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
20 lines
426 B
C
20 lines
426 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/msvcrt/mbstring/ismbal.c
|
|
* PURPOSE: Checks for alphabetic multibyte character
|
|
* PROGRAMER: Ariadne
|
|
* UPDATE HISTORY:
|
|
* 12/04/99: Created
|
|
*/
|
|
#include <mbctype.h>
|
|
#include <ctype.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int _ismbbalpha(unsigned int c)
|
|
{
|
|
return (isalpha(c) || _ismbbkalnum(c));
|
|
}
|
|
|