// cwctype standard header
#ifndef _CWCTYPE_
#define _CWCTYPE_

#if defined(__ghs) || defined(__SC3__)

#include <wctype.h>

#if defined(__NAMESPACES) && !defined(__EMBEDDED_CXX_HEADERS)
namespace std {
    using ::wint_t;
    using ::wctrans_t;
    using ::wctype_t;
    using ::iswalnum;
    using ::iswalpha;
    using ::iswblank;
    using ::iswcntrl;
    using ::iswctype;
    using ::iswdigit;
    using ::iswgraph;
    using ::iswlower;
    using ::iswprint;
    using ::iswpunct;
    using ::iswspace;
    using ::iswupper;
    using ::iswxdigit;
    using ::towctrans;
    using ::towlower;
    using ::towupper;
    using ::wctrans;
    using ::wctype;
}
#endif  // __NAMESPACES
#else /* !__ghs */

#include <yvals.h>

#ifdef _STD_USING
 #undef _STD_USING
  #include <wctype.h>
 #define _STD_USING

#else /* _STD_USING */
 #include <wctype.h>

 #ifdef _GLOBAL_USING
_STD_BEGIN

 #if defined(__BORLANDC__) || defined(__APPLE__)	/* compiler test */

 #else /* defined(__BORLANDC__) */
using _CSTD wint_t; using _CSTD wctrans_t; using _CSTD wctype_t;

using _CSTD iswalnum; using _CSTD iswalpha; using _CSTD iswcntrl;
using _CSTD iswctype; using _CSTD iswdigit; using _CSTD iswgraph;
using _CSTD iswlower; using _CSTD iswprint; using _CSTD iswpunct;
using _CSTD iswspace; using _CSTD iswupper; using _CSTD iswxdigit;
using _CSTD towctrans; using _CSTD towlower; using _CSTD towupper;
using _CSTD wctrans; using _CSTD wctype;
 #endif /* defined(__BORLANDC__) */

 #if _HAS_C9X
using _CSTD iswblank;
 #endif /* _HAS_C9X */

_STD_END
 #endif /* _GLOBAL_USING */

#endif /* _STD_USING */

#endif /* !__ghs */
#endif /* _CWCTYPE_ */

/*
 * Copyright (c) 1992-2003 by P.J. Plauger.  ALL RIGHTS RESERVED.
 * Consult your license regarding permissions and restrictions.
V4.02:0324 */
