ReactOS 0.4.15-dev-7942-gd23573b
ismbal.c
Go to the documentation of this file.
1/*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/sdk/crt/mbstring/ismbal.c
5 * PURPOSE: Checks for alphabetic multibyte character
6 * PROGRAMER: Ariadne
7 * UPDATE HISTORY:
8 * 12/04/99: Created
9 */
10#include <mbctype.h>
11#include <ctype.h>
12
13/*
14 * @implemented
15 */
16int _ismbbalpha(unsigned int c)
17{
18 return (isalpha(c) || _ismbbkalnum(c));
19}
20
#define isalpha(c)
Definition: acclib.h:74
const GLubyte * c
Definition: glext.h:8905
int _ismbbalpha(unsigned int c)
Definition: ismbal.c:16
_Check_return_ _CRTIMP int __cdecl _ismbbkalnum(_In_ unsigned int _C)