44 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) 46 extern "C" __typeof(nl_langinfo_l) __nl_langinfo_l;
47 extern "C" __typeof(strcoll_l) __strcoll_l;
48 extern "C" __typeof(strftime_l) __strftime_l;
49 extern "C" __typeof(strtod_l) __strtod_l;
50 extern "C" __typeof(strtof_l) __strtof_l;
51 extern "C" __typeof(strtold_l) __strtold_l;
52 extern "C" __typeof(strxfrm_l) __strxfrm_l;
53 extern "C" __typeof(newlocale) __newlocale;
54 extern "C" __typeof(freelocale) __freelocale;
55 extern "C" __typeof(duplocale) __duplocale;
56 extern "C" __typeof(uselocale) __uselocale;
58 #ifdef _GLIBCXX_USE_WCHAR_T 59 extern "C" __typeof(iswctype_l) __iswctype_l;
60 extern "C" __typeof(towlower_l) __towlower_l;
61 extern "C" __typeof(towupper_l) __towupper_l;
62 extern "C" __typeof(wcscoll_l) __wcscoll_l;
63 extern "C" __typeof(wcsftime_l) __wcsftime_l;
64 extern "C" __typeof(wcsxfrm_l) __wcsxfrm_l;
65 extern "C" __typeof(wctype_l) __wctype_l;
68 #endif // GLIBC 2.3 and later 70 namespace std _GLIBCXX_VISIBILITY(default)
72 _GLIBCXX_BEGIN_NAMESPACE_VERSION
76 Catalog_info(messages_base::catalog __id,
const char* __domain,
78 : _M_id(__id), _M_domain(strdup(__domain)), _M_locale(__loc)
84 messages_base::catalog _M_id;
89 Catalog_info(
const Catalog_info&);
92 operator=(
const Catalog_info&);
98 Catalogs() : _M_catalog_counter(0) { }
101 messages_base::catalog
102 _M_add(
const char* __domain, locale __l);
105 _M_erase(messages_base::catalog __c);
108 _M_get(messages_base::catalog __c)
const;
111 mutable __gnu_cxx::__mutex _M_mutex;
112 messages_base::catalog _M_catalog_counter;
113 vector<Catalog_info*> _M_infos;
119 _GLIBCXX_END_NAMESPACE_VERSION
ISO C++ entities toplevel namespace is std.