update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / isspace.c
index e0ebcb3..6f74756 100644 (file)
@@ -2,20 +2,28 @@
  * COPYRIGHT:   See COPYING in the top level directory
  * PROJECT:     ReactOS system libraries
  * FILE:        lib/msvcrt/ctype/isspace.c
- * PURPOSE:     Checks for a whitespace characters
+ * PURPOSE:     Test for a space character
  * PROGRAMER:   Boudewijn Dekker
  * UPDATE HISTORY:
  *              28/12/98: Created
  */
+
 #include <msvcrt/ctype.h>
 
+
 #undef isspace
+/*
+ * @implemented
+ */
 int isspace(int c)
 {
   return _isctype(c,_SPACE);
 }
 
 #undef iswspace
+/*
+ * @implemented
+ */
 int iswspace(wint_t c)
 {
   return iswctype(c,_SPACE);