update for HEAD-2003091401
[reactos.git] / ntoskrnl / rtl / ctype.c
index a8ccc9b..231852d 100644 (file)
@@ -324,6 +324,9 @@ int __iscsymf(int c)
 }
 */
 
+/*
+ * @implemented
+ */
 int isdigit(int c)
 {
    return(_isctype(c, _DIGIT));
@@ -336,11 +339,17 @@ int isgraph(int c)
 }
 */
 
+/*
+ * @implemented
+ */
 int islower(int c)
 {
    return (_isctype (c, _LOWER));
 }
 
+/*
+ * @implemented
+ */
 int isprint(int c)
 {
    return (_isctype (c, _BLANK | _PUNCT | _ALPHA | _DIGIT));
@@ -353,16 +362,25 @@ int ispunct(int c)
 }
 */
 
+/*
+ * @implemented
+ */
 int isspace(int c)
 {
    return (_isctype (c, _SPACE));
 }
 
+/*
+ * @implemented
+ */
 int isupper(int c)
 {
    return (_isctype (c, _UPPER));
 }
 
+/*
+ * @implemented
+ */
 int isxdigit(int c)
 {
    return (_isctype (c, _HEX));
@@ -412,6 +430,9 @@ int _toupper(int c)
 }
 */
 
+/*
+ * @implemented
+ */
 int tolower(int c)
 {
    if (_isctype (c, _UPPER))
@@ -419,6 +440,9 @@ int tolower(int c)
    return(c);
 }
 
+/*
+ * @implemented
+ */
 int toupper(int c)
 {
    if (_isctype (c, _LOWER))
@@ -426,6 +450,9 @@ int toupper(int c)
    return(c);
 }
 
+/*
+ * @implemented
+ */
 wchar_t towlower(wchar_t c)
 {
    if (iswctype (c, _UPPER))
@@ -433,6 +460,9 @@ wchar_t towlower(wchar_t c)
    return(c);
 }
 
+/*
+ * @implemented
+ */
 wchar_t towupper(wchar_t c)
 {
    if (iswctype (c, _LOWER))