e26e3e86ec541677dd85144ea5f108812092bc32
[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 #undef ispunct
5 int ispunct(int c)
6 {
7   return _isctype(c,_PUNCT);
8 }
9
10 #undef iswpunct
11 int iswpunct(wint_t c)
12 {
13   return iswctype(c,_PUNCT);
14 }