ee59df2ef98ee9982e4e310eef41378349e3b3a2
[reactos.git] / lib / msvcrt / mbstring / ismbal.c
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS system libraries
4  * FILE:        lib/crtdll/mbstring/hanzen.c
5  * PURPOSE:     Checks for alphabetic multibyte character
6  * PROGRAMER:   Boudewijn Dekker
7  * UPDATE HISTORY:
8  *              12/04/99: Created
9  */
10 #include <crtdll/mbctype.h>
11 #include <crtdll/ctype.h>
12
13 int _ismbbalpha(unsigned char c)
14 {
15   return (isalpha(c) || _ismbbkalnum(c));
16 }
17