update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / islower.c
index c3a9178..8c1766b 100644 (file)
@@ -1,13 +1,20 @@
 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
 #include <msvcrt/ctype.h>
 
+
 #undef islower
+/*
+ * @implemented
+ */
 int islower(int c)
 {
-  return _isctype(c,_LOWER);
+    return _isctype(c, _LOWER);
 }
 
+/*
+ * @implemented
+ */
 int iswlower(wint_t c)
 {
-  return iswctype(c,_LOWER);
+    return iswctype(c, _LOWER);
 }