SM - Sorry, I forgot silence dbg messages!
[reactos.git] / reactos / lib / crt / ctype / ispunct.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: msvcrt/ctype/ispunct.c
5 * PURPOSE: C Runtime
6 * PROGRAMMER: Copyright (C) 1995 DJ Delorie
7 */
8
9 #include <msvcrt/ctype.h>
10
11 #undef ispunct
12 /*
13 * @implemented
14 */
15 int ispunct(int c)
16 {
17 return _isctype(c, _PUNCT);
18 }
19
20 #undef iswpunct
21 /*
22 * @implemented
23 */
24 int iswpunct(wint_t c)
25 {
26 return iswctype(c, _PUNCT);
27 }