Merge 13511:13830 from trunk
[reactos.git] / reactos / lib / crt / ctype / isprint.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: msvcrt/ctype/isprint.c
5 * PURPOSE: C Runtime
6 * PROGRAMMER: Copyright (C) 1995 DJ Delorie
7 */
8
9 #include <ctype.h>
10
11 /*
12 * @implemented
13 */
14 int iswprint(wint_t c)
15 {
16 return iswctype((unsigned short)c,_BLANK | _PUNCT | _ALPHA | _DIGIT);
17 }