#ifndef _LIBCPP_CWCTYPE
#define _LIBCPP_CWCTYPE
#include <__config>
#include <cctype>
#include <wctype.h>
#ifndef _LIBCPP_WCTYPE_H
# error <cwctype> tried including <wctype.h> but didn't find libc++'s <wctype.h> header. \
This usually means that your header search paths are not configured properly. \
The header search paths should contain the C++ Standard Library headers before \
any C Standard Library, and you are probably using compiler flags that make that \
not be the case.
#endif
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
#if defined(_LIBCPP_INCLUDED_C_LIBRARY_WCTYPE_H)
wint_t _LIBCPP_USING_IF_EXISTS;
wctrans_t _LIBCPP_USING_IF_EXISTS;
wctype_t _LIBCPP_USING_IF_EXISTS;
iswalnum _LIBCPP_USING_IF_EXISTS;
iswalpha _LIBCPP_USING_IF_EXISTS;
iswblank _LIBCPP_USING_IF_EXISTS;
iswcntrl _LIBCPP_USING_IF_EXISTS;
iswdigit _LIBCPP_USING_IF_EXISTS;
iswgraph _LIBCPP_USING_IF_EXISTS;
iswlower _LIBCPP_USING_IF_EXISTS;
iswprint _LIBCPP_USING_IF_EXISTS;
iswpunct _LIBCPP_USING_IF_EXISTS;
iswspace _LIBCPP_USING_IF_EXISTS;
iswupper _LIBCPP_USING_IF_EXISTS;
iswxdigit _LIBCPP_USING_IF_EXISTS;
iswctype _LIBCPP_USING_IF_EXISTS;
wctype _LIBCPP_USING_IF_EXISTS;
towlower _LIBCPP_USING_IF_EXISTS;
towupper _LIBCPP_USING_IF_EXISTS;
towctrans _LIBCPP_USING_IF_EXISTS;
wctrans _LIBCPP_USING_IF_EXISTS;
#endif
_LIBCPP_END_NAMESPACE_STD
#endif