164eb520a875aa4cda01f750d08cc4d9b224eea4
[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 /*
7  * @implemented
8  */
9 int iscntrl(int c)
10 {
11     return _isctype(c, _CONTROL);
12 }
13
14 #undef iswcntrl
15 /*
16  * @implemented
17  */
18 int iswcntrl(wint_t c)
19 {
20     return iswctype(c, _CONTROL);
21 }