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