branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / 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 }