update for HEAD-2003091401
[reactos.git] / lib / crtdll / mbstring / ismbgra.c
1 #include <msvcrt/mbstring.h>
2 #include <msvcrt/mbctype.h>
3 #include <msvcrt/ctype.h>
4
5 /*
6  * @implemented
7  */
8 int _ismbbgraph(unsigned char c)
9 {
10         return (isgraph(c) || _ismbbkana(c));
11 }