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