/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries * FILE: lib/msvcrt/ctype/isspace.c * PURPOSE: Test for a space character * PROGRAMER: Boudewijn Dekker * UPDATE HISTORY: * 28/12/98: Created */ #include #undef isspace /* * @implemented */ int isspace(int c) { return _isctype(c,_SPACE); } #undef iswspace /* * @implemented */ int iswspace(wint_t c) { return iswctype(c,_SPACE); }