update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / isspace.c
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS system libraries
4  * FILE:        lib/msvcrt/ctype/isspace.c
5  * PURPOSE:     Test for a space character
6  * PROGRAMER:   Boudewijn Dekker
7  * UPDATE HISTORY:
8  *              28/12/98: Created
9  */
10
11 #include <msvcrt/ctype.h>
12
13
14 #undef isspace
15 /*
16  * @implemented
17  */
18 int isspace(int c)
19 {
20   return _isctype(c,_SPACE);
21 }
22
23 #undef iswspace
24 /*
25  * @implemented
26  */
27 int iswspace(wint_t c)
28 {
29   return iswctype(c,_SPACE);
30 }