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 # ifndef _STLP_NUM_PUT_H
22 # define _STLP_NUM_PUT_H
24 #ifndef _STLP_INTERNAL_NUM_PUT_H
25 #include <stl/_num_put.h>
27 #ifndef _STLP_INTERNAL_OSTREAM_H
28 #include <stl/_ostream.h>
33 // Note that grouping[0] is the number of digits in the *rightmost* group.
34 // We assume, without checking, that *last is null and that there is enough
35 // space in the buffer to extend the number past [first, last).
38 __insert_grouping_aux(Char* first, Char* last, const string& grouping,
39 Char separator, Char Plus, Char Minus,
42 typedef string::size_type str_size;
49 if (*first == Plus || *first == Minus) {
55 str_size n = 0; // Index of the current group.
56 Char* cur_group = last; // Points immediately beyond the rightmost
57 // digit of the current group.
58 int groupsize = 0; // Size of the current group.
61 //groupsize = n < grouping.size() ? grouping[n]-48 : groupsize;
62 groupsize = n < grouping.size() ? grouping[n] : groupsize;
65 if (groupsize <= 0 || groupsize >= cur_group - first)
68 // Insert a separator character just before position cur_group - groupsize
69 cur_group -= groupsize;
71 copy_backward(cur_group, last, last + 1);
72 *cur_group = separator;
75 return (last - first) + sign + basechars;