Copy wininet to branch
[reactos.git] / reactos / lib / crt / ctype / isgraph.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: msvcrt/ctype/isgraph.c
5 * PURPOSE: C Runtime
6 * PROGRAMMER: Copyright (C) 1995 DJ Delorie
7 */
8
9 #include <ctype.h>
10
11 #undef iswgraph
12 /*
13 * @implemented
14 */
15 int iswgraph(wint_t c)
16 {
17 return iswctype(c,_PUNCT | _ALPHA | _DIGIT);
18 }