update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / isgraph.c
index 39c500c..282cdd6 100644 (file)
@@ -2,12 +2,18 @@
 #include <msvcrt/ctype.h>
 
 #undef isgraph
+/*
+ * @implemented
+ */
 int isgraph(int c)
 {
   return _isctype(c,_PUNCT | _ALPHA | _DIGIT);
 }
 
 #undef iswgraph
+/*
+ * @implemented
+ */
 int iswgraph(wint_t c)
 {
   return iswctype(c,_PUNCT | _ALPHA | _DIGIT);