Update contrib.
2 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
5 * Silicon Graphics Computer Systems, Inc.
10 * This material is provided "as is", with absolutely no warranty expressed
11 * or implied. Any use is at your own risk.
13 * Permission to use or copy this software for any purpose is hereby granted
14 * without fee, provided the above notices are retained on all copies.
15 * Permission to modify the code and to distribute modified code is granted,
16 * provided the above notices are retained, and a notice that the code was
17 * modified is included with the above copyright notice.
21 # include "stlport_prefix.h"
23 #if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
24 #include "libstdcppwsd.h"
29 //----------------------------------------------------------------------
32 extern const char __hex_char_table_lo[];
33 extern const char __hex_char_table_hi[];
35 const char __hex_char_table_lo[18] = "0123456789abcdefx";
36 const char __hex_char_table_hi[18] = "0123456789ABCDEFX";
38 _STLP_EXP_DECLSPEC const char* get_hex_char_table_lo()
40 return __hex_char_table_lo;
43 _STLP_EXP_DECLSPEC const char* get_hex_char_table_hi()
45 return __hex_char_table_hi;
48 _STLP_EXP_DECLSPEC char* _STLP_CALL
49 __write_integer(char* buf, ios_base::fmtflags flags, long x)
52 char* bufend = tmp+64;
53 char* beg = __write_integer_backward(bufend, flags, x);
54 return copy(beg, bufend, buf);
57 ///-------------------------------------
59 _STLP_EXP_DECLSPEC ptrdiff_t _STLP_CALL
60 __insert_grouping(char * first, char * last, const string& grouping,
61 char separator, char Plus, char Minus, int basechars)
63 return __insert_grouping_aux(first, last, grouping,
64 separator, Plus, Minus, basechars);
67 # ifndef _STLP_NO_WCHAR_T
69 _STLP_EXP_DECLSPEC ptrdiff_t _STLP_CALL
70 __insert_grouping(wchar_t* first, wchar_t* last, const string& grouping,
71 wchar_t separator, wchar_t Plus, wchar_t Minus,
74 return __insert_grouping_aux(first, last, grouping, separator,
75 Plus, Minus, basechars);
81 //----------------------------------------------------------------------
82 // Force instantiation of num_put<>
83 #if !defined(_STLP_NO_FORCE_INSTANTIATE)
84 template class _STLP_CLASS_DECLSPEC ostreambuf_iterator<char, char_traits<char> >;
85 // template class num_put<char, char*>;
86 template class num_put<char, ostreambuf_iterator<char, char_traits<char> > >;
87 # ifndef _STLP_NO_WCHAR_T
88 template class ostreambuf_iterator<wchar_t, char_traits<wchar_t> >;
89 template class num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
90 // template class num_put<wchar_t, wchar_t*>;
91 # endif /* INSTANTIATE_WIDE_STREAMS */