723b8b0cc23ff520e3b55d49626dfe9443cdd60b
[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
11 #include <msvcrt/ctype.h>
12
13
14 #undef isspace
15 int isspace(int c)
16 {
17   return _isctype(c,_SPACE);
18 }
19
20 #undef iswspace
21 int iswspace(wint_t c)
22 {
23   return iswctype(c,_SPACE);
24 }