Reverted latest changes.
[reactos.git] / reactos / 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: Checks for a whitespace characters
6 * PROGRAMER: Boudewijn Dekker
7 * UPDATE HISTORY:
8 * 28/12/98: Created
9 */
10 #include <msvcrt/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 }