41 #pragma GCC system_header
46 #ifndef _GLIBCXX_CCTYPE
47 #define _GLIBCXX_CCTYPE 1
64 _GLIBCXX_BEGIN_NAMESPACE(std)
80 _GLIBCXX_END_NAMESPACE
82 #ifdef __GXX_EXPERIMENTAL_CXX0X__
83 # if defined(_GLIBCXX_INCLUDE_AS_TR1)
84 # error C++0x header cannot be included from TR1 header
86 # if defined(_GLIBCXX_INCLUDE_AS_CXX0X)
89 # define _GLIBCXX_INCLUDE_AS_CXX0X
90 # define _GLIBCXX_BEGIN_NAMESPACE_TR1
91 # define _GLIBCXX_END_NAMESPACE_TR1
95 # undef _GLIBCXX_END_NAMESPACE_TR1
96 # undef _GLIBCXX_BEGIN_NAMESPACE_TR1
97 # undef _GLIBCXX_INCLUDE_AS_CXX0X
bool islower(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::lower, __c).
bool ispunct(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::punct, __c).
bool isprint(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::print, __c).
_GLIBCXX_END_LDBL_NAMESPACE bool isspace(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::space, __c).
bool isdigit(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::digit, __c).
bool iscntrl(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::cntrl, __c).
bool isgraph(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::graph, __c).
bool isxdigit(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::xdigit, __c).
_CharT tolower(_CharT __c, const locale &__loc)
Convenience interface to ctype.tolower(__c).
_CharT toupper(_CharT __c, const locale &__loc)
Convenience interface to ctype.toupper(__c).
bool isalpha(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::alpha, __c).
bool isupper(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::upper, __c).
bool isalnum(_CharT __c, const locale &__loc)
Convenience interface to ctype.is(ctype_base::alnum, __c).