update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / islower.c
index 34cc31a..8c1766b 100644 (file)
@@ -3,11 +3,17 @@
 
 
 #undef islower
+/*
+ * @implemented
+ */
 int islower(int c)
 {
     return _isctype(c, _LOWER);
 }
 
+/*
+ * @implemented
+ */
 int iswlower(wint_t c)
 {
     return iswctype(c, _LOWER);