branch update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / isdigit.c
index e84881d..9b1b703 100644 (file)
@@ -3,12 +3,18 @@
 
 
 #undef isdigit
+/*
+ * @implemented
+ */
 int isdigit(int c)
 {
    return _isctype(c, _DIGIT);
 }
 
 #undef iswdigit
+/*
+ * @implemented
+ */
 int iswdigit(wint_t c)
 {
    return iswctype(c, _DIGIT);