1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/* fmt/snum.c - Format a signed integer.
* Copyright (C) 2004,2005 Bruce Guenter <bruce@untroubled.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "fmt.h"
static unsigned rec(char* buffer, long num, int sign,
unsigned width, char pad,
unsigned base, const char* digits)
{
char* s = buffer;
if (width) --width;
if (num >= (long)base)
s += rec(s, num/base, sign, width, pad, base, digits);
else
s += fmt_sign_pad(s, sign, width, pad);
*s++ = digits[num % base];
return s - buffer;
}
/** Format a signed integer of arbitrary base with optional padding. */
unsigned fmt_snumw(char* buffer, long num, unsigned width, char pad,
unsigned base, const char* digits)
{
char* s = buffer;
int sign;
sign = 0;
if (num < 0) {
sign = 1;
num = -num;
if (width) -- width;
}
if (buffer == 0) {
unsigned len;
for (len = 1; num >= (long)base; ++len)
num /= base;
return ((width > len) ? width : len) + sign;
}
if (num < (long)base) {
if (width) --width;
s += fmt_sign_pad(s, sign, width, pad);
*s++ = digits[num];
}
else
s += rec(s, num, sign, width, pad, base, digits);
return s - buffer;
}
#ifdef SELFTEST_MAIN
void test(long num, unsigned width, char pad)
{
char buf[FMT_ULONG_LEN];
obuf_putu(&outbuf, fmt_sdecw(0, num, width, pad));
obuf_putc(&outbuf, ':');
buf[fmt_sdecw(buf, num, width, pad)] = 0;
obuf_puts(&outbuf, buf);
NL();
}
void testall(long num)
{
test(num, 0, 0);
test(num, 1, '0');
test(num, 5, ' ');
test(num, 5, '0');
}
MAIN
{
testall(0);
testall(1);
testall(-1);
testall(10);
testall(-10);
}
#endif
#ifdef SELFTEST_EXP
1:0
1:0
5: 0
5:00000
1:1
1:1
5: 1
5:00001
2:-1
2:-1
5: -1
5:-0001
2:10
2:10
5: 10
5:00010
3:-10
3:-10
5: -10
5:-0010
#endif
|