- Cleanup the /lib directory, by putting more 3rd-party libs in /3rdparty, and by...
[reactos.git] / reactos / lib / sdk / crt / mbstring / ismbgra.c
1 #include <mbstring.h>
2 #include <mbctype.h>
3 #include <ctype.h>
4
5 /*
6 * @implemented
7 */
8 int _ismbbgraph(unsigned int c)
9 {
10 return (isgraph(c) || _ismbbkana(c));
11 }