33 namespace std _GLIBCXX_VISIBILITY(default)
35 _GLIBCXX_BEGIN_NAMESPACE_VERSION
41 typedef int* __to_type;
45 typedef unsigned int mask;
46 static const mask upper = _ISUPPER;
47 static const mask lower = _ISLOWER;
48 static const mask alpha = _ISALPHA;
49 static const mask digit = _ISDIGIT;
50 static const mask xdigit = _ISXDIGIT;
51 static const mask space = _ISSPACE;
52 static const mask print = _ISPRINT;
53 static const mask graph = _ISALPHA | _ISDIGIT | _ISPUNCT;
54 static const mask cntrl = _ISCNTRL;
55 static const mask punct = _ISPUNCT;
56 static const mask alnum = _ISALPHA | _ISDIGIT;
59 _GLIBCXX_END_NAMESPACE_VERSION