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