sl@0
|
1 |
/*
|
sl@0
|
2 |
* © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (c) 1999
|
sl@0
|
5 |
* Silicon Graphics Computer Systems, Inc.
|
sl@0
|
6 |
*
|
sl@0
|
7 |
* Copyright (c) 1999
|
sl@0
|
8 |
* Boris Fomitchev
|
sl@0
|
9 |
*
|
sl@0
|
10 |
* This material is provided "as is", with absolutely no warranty expressed
|
sl@0
|
11 |
* or implied. Any use is at your own risk.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* Permission to use or copy this software for any purpose is hereby granted
|
sl@0
|
14 |
* without fee, provided the above notices are retained on all copies.
|
sl@0
|
15 |
* Permission to modify the code and to distribute modified code is granted,
|
sl@0
|
16 |
* provided the above notices are retained, and a notice that the code was
|
sl@0
|
17 |
* modified is included with the above copyright notice.
|
sl@0
|
18 |
*
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
|
sl@0
|
21 |
# include "stlport_prefix.h"
|
sl@0
|
22 |
# include "num_put.h"
|
sl@0
|
23 |
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
|
sl@0
|
24 |
#include "libstdcppwsd.h"
|
sl@0
|
25 |
# endif
|
sl@0
|
26 |
|
sl@0
|
27 |
_STLP_BEGIN_NAMESPACE
|
sl@0
|
28 |
|
sl@0
|
29 |
//----------------------------------------------------------------------
|
sl@0
|
30 |
// num_put
|
sl@0
|
31 |
|
sl@0
|
32 |
extern const char __hex_char_table_lo[];
|
sl@0
|
33 |
extern const char __hex_char_table_hi[];
|
sl@0
|
34 |
|
sl@0
|
35 |
const char __hex_char_table_lo[18] = "0123456789abcdefx";
|
sl@0
|
36 |
const char __hex_char_table_hi[18] = "0123456789ABCDEFX";
|
sl@0
|
37 |
|
sl@0
|
38 |
_STLP_EXP_DECLSPEC const char* get_hex_char_table_lo()
|
sl@0
|
39 |
{
|
sl@0
|
40 |
return __hex_char_table_lo;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
_STLP_EXP_DECLSPEC const char* get_hex_char_table_hi()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
return __hex_char_table_hi;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
_STLP_EXP_DECLSPEC char* _STLP_CALL
|
sl@0
|
49 |
__write_integer(char* buf, ios_base::fmtflags flags, long x)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
char tmp[64];
|
sl@0
|
52 |
char* bufend = tmp+64;
|
sl@0
|
53 |
char* beg = __write_integer_backward(bufend, flags, x);
|
sl@0
|
54 |
return copy(beg, bufend, buf);
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
///-------------------------------------
|
sl@0
|
58 |
|
sl@0
|
59 |
_STLP_EXP_DECLSPEC ptrdiff_t _STLP_CALL
|
sl@0
|
60 |
__insert_grouping(char * first, char * last, const string& grouping,
|
sl@0
|
61 |
char separator, char Plus, char Minus, int basechars)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
return __insert_grouping_aux(first, last, grouping,
|
sl@0
|
64 |
separator, Plus, Minus, basechars);
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
68 |
|
sl@0
|
69 |
_STLP_EXP_DECLSPEC ptrdiff_t _STLP_CALL
|
sl@0
|
70 |
__insert_grouping(wchar_t* first, wchar_t* last, const string& grouping,
|
sl@0
|
71 |
wchar_t separator, wchar_t Plus, wchar_t Minus,
|
sl@0
|
72 |
int basechars)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
return __insert_grouping_aux(first, last, grouping, separator,
|
sl@0
|
75 |
Plus, Minus, basechars);
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
# endif
|
sl@0
|
79 |
|
sl@0
|
80 |
|
sl@0
|
81 |
//----------------------------------------------------------------------
|
sl@0
|
82 |
// Force instantiation of num_put<>
|
sl@0
|
83 |
#if !defined(_STLP_NO_FORCE_INSTANTIATE)
|
sl@0
|
84 |
template class _STLP_CLASS_DECLSPEC ostreambuf_iterator<char, char_traits<char> >;
|
sl@0
|
85 |
// template class num_put<char, char*>;
|
sl@0
|
86 |
template class num_put<char, ostreambuf_iterator<char, char_traits<char> > >;
|
sl@0
|
87 |
# ifndef _STLP_NO_WCHAR_T
|
sl@0
|
88 |
template class ostreambuf_iterator<wchar_t, char_traits<wchar_t> >;
|
sl@0
|
89 |
template class num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
|
sl@0
|
90 |
// template class num_put<wchar_t, wchar_t*>;
|
sl@0
|
91 |
# endif /* INSTANTIATE_WIDE_STREAMS */
|
sl@0
|
92 |
#endif
|
sl@0
|
93 |
|
sl@0
|
94 |
_STLP_END_NAMESPACE
|
sl@0
|
95 |
|
sl@0
|
96 |
// Local Variables:
|
sl@0
|
97 |
// mode:C++
|
sl@0
|
98 |
// End:
|