36namespace std _GLIBCXX_VISIBILITY(default)
 
   38_GLIBCXX_BEGIN_NAMESPACE_VERSION
 
   44    typedef const int*          __to_type;
 
   48    typedef unsigned short      mask;
 
   49    static const mask upper     = _ISupper;
 
   50    static const mask lower     = _ISlower;
 
   51    static const mask alpha     = _ISalpha;
 
   52    static const mask digit     = _ISdigit;
 
   53    static const mask xdigit    = _ISxdigit;
 
   54    static const mask space     = _ISspace;
 
   55    static const mask print     = _ISprint;
 
   56    static const mask graph     = _ISalpha | _ISdigit | _ISpunct;
 
   57    static const mask cntrl     = _IScntrl;
 
   58    static const mask punct     = _ISpunct;
 
   59    static const mask alnum     = _ISalpha | _ISdigit;
 
   60#if __cplusplus >= 201103L 
   61    static const mask blank     = _ISblank;
 
   65_GLIBCXX_END_NAMESPACE_VERSION
 
ISO C++ entities toplevel namespace is std.