update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / isspace.c
index 3bb9d32..6f74756 100644 (file)
 
 
 #undef isspace
+/*
+ * @implemented
+ */
 int isspace(int c)
 {
   return _isctype(c,_SPACE);
 }
 
 #undef iswspace
+/*
+ * @implemented
+ */
 int iswspace(wint_t c)
 {
   return iswctype(c,_SPACE);