#ifndef _LIBCPP_CCTYPE
#define _LIBCPP_CCTYPE
#include <__config>
#include <ctype.h>
#ifndef _LIBCPP_CTYPE_H
# error <cctype> tried including <ctype.h> but didn't find libc++'s <ctype.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.
#endif
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
#ifdef isalnum
# undef isalnum
#endif
#ifdef isalpha
# undef isalpha
#endif
#ifdef isblank
# undef isblank
#endif
#ifdef iscntrl
# undef iscntrl
#endif
#ifdef isdigit
# undef isdigit
#endif
#ifdef isgraph
# undef isgraph
#endif
#ifdef islower
# undef islower
#endif
#ifdef isprint
# undef isprint
#endif
#ifdef ispunct
# undef ispunct
#endif
#ifdef isspace
# undef isspace
#endif
#ifdef isupper
# undef isupper
#endif
#ifdef isxdigit
# undef isxdigit
#endif
#ifdef tolower
# undef tolower
#endif
#ifdef toupper
# undef toupper
#endif
isalnum _LIBCPP_USING_IF_EXISTS;
isalpha _LIBCPP_USING_IF_EXISTS;
isblank _LIBCPP_USING_IF_EXISTS;
iscntrl _LIBCPP_USING_IF_EXISTS;
isdigit _LIBCPP_USING_IF_EXISTS;
isgraph _LIBCPP_USING_IF_EXISTS;
islower _LIBCPP_USING_IF_EXISTS;
isprint _LIBCPP_USING_IF_EXISTS;
ispunct _LIBCPP_USING_IF_EXISTS;
isspace _LIBCPP_USING_IF_EXISTS;
isupper _LIBCPP_USING_IF_EXISTS;
isxdigit _LIBCPP_USING_IF_EXISTS;
tolower _LIBCPP_USING_IF_EXISTS;
toupper _LIBCPP_USING_IF_EXISTS;
_LIBCPP_END_NAMESPACE_STD
#endif