// cwctype standard header
#ifndef _CWCTYPE_
#define _CWCTYPE_
#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 /* _CWCTYPE_ */

/*
 * Copyright (c) 1992-2003 by P.J. Plauger.  ALL RIGHTS RESERVED.
 * Consult your license regarding permissions and restrictions.
V4.02:0216 */
