update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / ispunct.c
index 5a06ae4..8d8a318 100644 (file)
@@ -3,12 +3,18 @@
 
 
 #undef ispunct
+/*
+ * @implemented
+ */
 int ispunct(int c)
 {
     return _isctype(c, _PUNCT);
 }
 
 #undef iswpunct
+/*
+ * @implemented
+ */
 int iswpunct(wint_t c)
 {
     return iswctype(c, _PUNCT);