X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fcrtdll%2Fctype%2Fisspace.c;fp=lib%2Fcrtdll%2Fctype%2Fisspace.c;h=0000000000000000000000000000000000000000;hp=723b8b0cc23ff520e3b55d49626dfe9443cdd60b;hb=7c0cf90e3b750f1f0dc83b2eec9e5c68a512c30f;hpb=ee8b63255465d8c28be3e7bd11628015708fc1ab diff --git a/lib/crtdll/ctype/isspace.c b/lib/crtdll/ctype/isspace.c deleted file mode 100644 index 723b8b0..0000000 --- a/lib/crtdll/ctype/isspace.c +++ /dev/null @@ -1,24 +0,0 @@ -/* - * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS system libraries - * FILE: lib/crtdll/ctype/isspace.c - * PURPOSE: Test for a space character - * PROGRAMER: Boudewijn Dekker - * UPDATE HISTORY: - * 28/12/98: Created - */ - -#include - - -#undef isspace -int isspace(int c) -{ - return _isctype(c,_SPACE); -} - -#undef iswspace -int iswspace(wint_t c) -{ - return iswctype(c,_SPACE); -}