<cctype>
Visual Studio 2005
Defines the macros traditionally defined in the Standard C library header <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;
}
#endif