ReactOS 0.4.15-dev-7924-g5949c20
ismbaln.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/ismbaln.c
5 * PURPOSE:
6 * PROGRAMER:
7 * UPDATE HISTORY:
8 * 05/30/08: Samuel Serapion adapted from PROJECT C Library
9 *
10 */
11
12
13#include <precomp.h>
14
15int _ismbbkalnum( unsigned int c );
16
17/*
18 * @implemented
19 */
20int _ismbbalnum(unsigned int c)
21{
22 return (isalnum(c) || _ismbbkalnum(c));
23}
24
25
const GLubyte * c
Definition: glext.h:8905
_Check_return_ _CRTIMP int __cdecl isalnum(_In_ int _C)
int _ismbbkalnum(unsigned int c)
Definition: ismbkaln.c:17
int _ismbbalnum(unsigned int c)
Definition: ismbaln.c:20