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