update for HEAD-2003091401
[reactos.git] / lib / crtdll / ctype / isalnum.c
diff --git a/lib/crtdll/ctype/isalnum.c b/lib/crtdll/ctype/isalnum.c
deleted file mode 100644 (file)
index cf741ce..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * COPYRIGHT:   See COPYING in the top level directory
- * PROJECT:     ReactOS system libraries
- * FILE:        lib/crtdll/ctype/isalnum.c
- * PURPOSE:     Test for a alpha numeric character
- * PROGRAMER:   Boudewijn Dekker
- * UPDATE HISTORY:
- *              28/12/98: Created
- */
-#include <msvcrt/ctype.h>
-
-
-#undef isalnum
-int isalnum(int c)
-{
-    return _isctype(c, _ALPHA | _DIGIT);
-}
-
-#undef iswalnum
-int iswalnum(wint_t c)
-{
-    return iswctype(c, _ALPHA | _DIGIT);
-}