update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / isctype.c
index 0b33a14..15fb758 100644 (file)
@@ -8,27 +8,43 @@ unsigned short *_pctype = _ctype + 1;
 unsigned short *_pwctype = _ctype + 1;
 
 
+/*
+ * @implemented
+ */
 unsigned short **__p__pctype(void)
 {
    return &_pctype;
 }
 
+/*
+ * @implemented
+ */
 unsigned short **__p__pwctype(void)
 {
    return &_pwctype;
 }
 
+/*
+ * @implemented
+ */
 int _isctype(unsigned int c, int ctypeFlags)
 {
    return (_pctype[(unsigned char)(c & 0xFF)] & ctypeFlags);
 }
 
+/*
+ * @implemented
+ */
 int iswctype(wint_t wc, wctype_t wctypeFlags)
 {
    return (_pwctype[(unsigned char)(wc & 0xFF)] & wctypeFlags);
 }
 
-// obsolete
+/*
+ * obsolete
+ *
+ * @implemented
+ */
 int is_wctype(wint_t wc, wctype_t wctypeFlags)
 {
    return (_pwctype[(unsigned char)(wc & 0xFF)] & wctypeFlags);