c++locale_internal.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include <bits/c++config.h>
00034 #include <clocale>
00035 #include <cstdlib>
00036 #include <cstring>
00037 #include <cstddef>
00038 #include <langinfo.h>
00039
00040 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
00041
00042 extern "C" __typeof(nl_langinfo_l) __nl_langinfo_l;
00043 extern "C" __typeof(strcoll_l) __strcoll_l;
00044 extern "C" __typeof(strftime_l) __strftime_l;
00045 extern "C" __typeof(strtod_l) __strtod_l;
00046 extern "C" __typeof(strtof_l) __strtof_l;
00047 extern "C" __typeof(strtold_l) __strtold_l;
00048 extern "C" __typeof(strxfrm_l) __strxfrm_l;
00049 extern "C" __typeof(newlocale) __newlocale;
00050 extern "C" __typeof(freelocale) __freelocale;
00051 extern "C" __typeof(duplocale) __duplocale;
00052 extern "C" __typeof(uselocale) __uselocale;
00053
00054 #ifdef _GLIBCXX_USE_WCHAR_T
00055 extern "C" __typeof(iswctype_l) __iswctype_l;
00056 extern "C" __typeof(towlower_l) __towlower_l;
00057 extern "C" __typeof(towupper_l) __towupper_l;
00058 extern "C" __typeof(wcscoll_l) __wcscoll_l;
00059 extern "C" __typeof(wcsftime_l) __wcsftime_l;
00060 extern "C" __typeof(wcsxfrm_l) __wcsxfrm_l;
00061 extern "C" __typeof(wctype_l) __wctype_l;
00062 #endif
00063
00064 #endif // GLIBC 2.3 and later