update for HEAD-2003091401
[reactos.git] / lib / crtdll / ctype / isascii.c
diff --git a/lib/crtdll/ctype/isascii.c b/lib/crtdll/ctype/isascii.c
deleted file mode 100644 (file)
index 5536f02..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * COPYRIGHT:   See COPYING in the top level directory
- * PROJECT:     ReactOS system libraries
- * FILE:        lib/crtdll/ctype/isascii.c
- * PURPOSE:     Checks if a character is ascii
- * PROGRAMER:   Boudewijn Dekker
- * UPDATE HISTORY:
- *              28/12/98: Created
- */
-
-#include <msvcrt/ctype.h>
-
-int __isascii(int c)
-{
-    return (!((c)&(~0x7f)));
-}
-
-int iswascii(wint_t c)
-{
-    return __isascii(c);
-}