X-Git-Url: http://git.buserror.net/cgi-bin/gitweb.cgi?p=polintos%2Fscott%2Fpriv.git;a=blobdiff_plain;f=include%2Fc%2B%2B%2Fstl%2Fstl%2F_cwctype.h;fp=include%2Fc%2B%2B%2Fstl%2Fstl%2F_cwctype.h;h=32db7ef5f4617a071794a870ccea00093bc8da5d;hp=0000000000000000000000000000000000000000;hb=173d8903eb9d51a4ea7d7fa3e52dc86c9bb6d4f1;hpb=b024710fe2b60cd4a42a8993b61333d6cdb56ca3 diff --git a/include/c++/stl/stl/_cwctype.h b/include/c++/stl/stl/_cwctype.h new file mode 100644 index 0000000..32db7ef --- /dev/null +++ b/include/c++/stl/stl/_cwctype.h @@ -0,0 +1,93 @@ +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_INTERNAL_CWCTYPE +#define _STLP_INTERNAL_CWCTYPE + +#if defined (__BORLANDC__) && !defined (_STLP_INTERNAL_CCTYPE) +# include +#endif + +#if !defined (_STLP_WCE_EVC3) +# if defined (_STLP_USE_NEW_C_HEADERS) +# if !defined (N_PLAT_NLM) +# include _STLP_NATIVE_CPP_C_HEADER(cwctype) +# else + // see comments in stlport/cwchar about wint_t on Novell +# include _STLP_NATIVE_CPP_C_HEADER(wchar_t.h) +# include _STLP_NATIVE_C_HEADER(stddef.h) +# include _STLP_NATIVE_C_HEADER(stdio.h) +# endif +# if defined (__MSL__) && !defined (N_PLAT_NLM) +namespace std { + typedef wchar_t wctrans_t; + wint_t towctrans(wint_t c, wctrans_t value); + wctrans_t wctrans(const char *name); +} +using std::wctrans_t; +using std::towctrans; +using std::wctrans; +# endif +# else +# include _STLP_NATIVE_C_HEADER(wctype.h) +# endif + +# if defined (_STLP_IMPORT_VENDOR_CSTD) + +# if defined (_STLP_USE_GLIBC) && !(defined (_GLIBCPP_USE_WCHAR_T) || defined (_GLIBCXX_USE_WCHAR_T)) || \ + defined (__sun) || defined (__FreeBSD__) || \ + defined (__MINGW32__) && ((__MINGW32_MAJOR_VERSION < 3) || (__MINGW32_MAJOR_VERSION == 3) && (__MINGW32_MINOR_VERSION <= 0)) +//We take wide functions from global namespace: +# define _STLP_VENDOR_CSTD_WFUNC +# else +# define _STLP_VENDOR_CSTD_WFUNC _STLP_VENDOR_CSTD +# endif + +_STLP_BEGIN_NAMESPACE +using _STLP_VENDOR_CSTD_WFUNC::wctype_t; +using _STLP_VENDOR_CSTD_WFUNC::wint_t; +# if !defined (_STLP_NO_CSTD_FUNCTION_IMPORTS) +# if !defined (__BORLANDC__) && !defined (__MSL__) +using _STLP_VENDOR_CSTD_WFUNC::wctrans_t; +# if !defined (__DMC__) && (!defined(_WIN32_WCE) || _WIN32_WCE<0x500) +using _STLP_VENDOR_CSTD_WFUNC::towctrans; +using _STLP_VENDOR_CSTD_WFUNC::wctrans; +using _STLP_VENDOR_CSTD_WFUNC::wctype; +# endif +using _STLP_VENDOR_CSTD_WFUNC::iswctype; +# endif +# if !defined(N_PLAT_NLM) +using _STLP_VENDOR_CSTD_WFUNC::iswalnum; +using _STLP_VENDOR_CSTD_WFUNC::iswalpha; +using _STLP_VENDOR_CSTD_WFUNC::iswcntrl; + +using _STLP_VENDOR_CSTD_WFUNC::iswdigit; +using _STLP_VENDOR_CSTD_WFUNC::iswgraph; +using _STLP_VENDOR_CSTD_WFUNC::iswlower; +using _STLP_VENDOR_CSTD_WFUNC::iswprint; +using _STLP_VENDOR_CSTD_WFUNC::iswpunct; +using _STLP_VENDOR_CSTD_WFUNC::iswspace; +using _STLP_VENDOR_CSTD_WFUNC::iswupper; +using _STLP_VENDOR_CSTD_WFUNC::iswxdigit; + +using _STLP_VENDOR_CSTD_WFUNC::towlower; +using _STLP_VENDOR_CSTD_WFUNC::towupper; +# endif /* !N_PLAT_NLM */ +# endif /* _STLP_NO_CSTD_FUNCTION_IMPORTS */ +_STLP_END_NAMESPACE +# endif /* _STLP_IMPORT_VENDOR_CSTD */ +#endif /* _STLP_WCE_EVC3 */ + +#endif /* _STLP_INTERNAL_CWCTYPE */