branch update for HEAD-2003021201
[reactos.git] / lib / msvcrt / ctype / ispunct.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/ctype.h>
3
4
5 #undef ispunct
6 int ispunct(int c)
7 {
8     return _isctype(c, _PUNCT);
9 }
10
11 #undef iswpunct
12 int iswpunct(wint_t c)
13 {
14     return iswctype(c, _PUNCT);
15 }