37 _GLIBCXX_BEGIN_NAMESPACE(std)
43 typedef const int* __to_type;
47 typedef unsigned short mask;
48 static const mask upper = _ISupper;
49 static const mask lower = _ISlower;
50 static const mask alpha = _ISalpha;
51 static const mask digit = _ISdigit;
52 static const mask xdigit = _ISxdigit;
53 static const mask space = _ISspace;
54 static const mask print = _ISprint;
55 static const mask graph = _ISalpha | _ISdigit | _ISpunct;
56 static const mask cntrl = _IScntrl;
57 static const mask punct = _ISpunct;
58 static const mask alnum = _ISalpha | _ISdigit;
61 _GLIBCXX_END_NAMESPACE