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