update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / isgraph.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/ctype.h>
3
4 #undef isgraph
5 /*
6  * @implemented
7  */
8 int isgraph(int c)
9 {
10   return _isctype(c,_PUNCT | _ALPHA | _DIGIT);
11 }
12
13 #undef iswgraph
14 /*
15  * @implemented
16  */
17 int iswgraph(wint_t c)
18 {
19   return iswctype(c,_PUNCT | _ALPHA | _DIGIT);
20 }