update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / isprint.c
index 8c6dbf5..022d25d 100644 (file)
@@ -2,11 +2,17 @@
 #include <msvcrt/ctype.h>
 
 #undef isprint
+/*
+ * @implemented
+ */
 int isprint(int c)
 {
   return _isctype(c,_BLANK | _PUNCT | _ALPHA | _DIGIT);
 }
 
+/*
+ * @implemented
+ */
 int iswprint(wint_t c)
 {
   return iswctype((unsigned short)c,_BLANK | _PUNCT | _ALPHA | _DIGIT);