37 namespace std _GLIBCXX_VISIBILITY(default)
39 _GLIBCXX_BEGIN_NAMESPACE_VERSION
45 typedef const int* __to_type;
49 typedef unsigned short mask;
50 static const mask upper = _ISupper;
51 static const mask lower = _ISlower;
52 static const mask alpha = _ISalpha;
53 static const mask digit = _ISdigit;
54 static const mask xdigit = _ISxdigit;
55 static const mask space = _ISspace;
56 static const mask print = _ISprint;
57 static const mask graph = _ISalpha | _ISdigit | _ISpunct;
58 static const mask cntrl = _IScntrl;
59 static const mask punct = _ISpunct;
60 static const mask alnum = _ISalpha | _ISdigit;
63 _GLIBCXX_END_NAMESPACE_VERSION