1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-19 21:10:21 +00:00
reactos/sdk/lib/crt/mbstring/ismbgra.c

11 lines
162 B
C

#include <mbstring.h>
#include <mbctype.h>
#include <ctype.h>
/*
* @implemented
*/
int _ismbbgraph(unsigned int c)
{
return (isgraph(c) || _ismbbkana(c));
}