<cctype>
従来標準 C ライブラリのヘッダー <ctype.h> で定義されているマクロを定義します。
#if <TRADITIONAL C HEADERS>
#include <ctype.h>
namespace std {
using ::isalnum;
using ::isalpha;
using ::iscntrl;
using ::isdigit;
using ::isgraph;
using ::islower;
using ::isprint;
using ::ispunct;
using ::isspace;
using ::isupper;
using ::isxdigit;
using ::tolower;
using ::toupper;
}
#undef isalnum
#undef isalpha
#undef isblank
#undef iscntrl
#undef isdigit
#undef isgraph
#undef islower
#undef isprint
#undef ispunct
#undef isspace
#undef isupper
#undef isxdigit
#undef tolower
#undef toupper
#endif
解説
このヘッダーが標準 C ライブラリのヘッダーの外部リンケージで宣言した名前が std の名前空間で宣言されていることも確認します。この実装では名前はこともあればまたはグローバル名前空間に特定の移動の環境によって宣言されていない可能性があります。