Tizen 2.1 base
[external/gmp.git] / mpbsd / mout.c
1 /* mout(MINT) -- Do decimal output of MINT to standard output.
2
3 Copyright 1991, 1994, 1996, 2000, 2001, 2002, 2005 Free Software Foundation,
4 Inc.
5
6 This file is part of the GNU MP Library.
7
8 The GNU MP Library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or (at your
11 option) any later version.
12
13 The GNU MP Library is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
16 License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
20
21 #include <stdio.h>
22 #include <string.h>
23 #include "mp.h"
24 #include "gmp.h"
25 #include "gmp-impl.h"
26 #include "longlong.h"
27
28 void
29 mout (const MINT *x)
30 {
31   mp_ptr xp;
32   mp_srcptr x_ptr;
33   mp_size_t x_size;
34   unsigned char *str;
35   size_t str_size;
36   int i;
37   TMP_DECL;
38
39   x_size = x->_mp_size;
40   if (x_size == 0)
41     {
42       fputc ('0', stdout);
43       fputc ('\n', stdout);
44       return;
45     }
46   if (x_size < 0)
47     {
48       fputc ('-', stdout);
49       x_size = -x_size;
50     }
51
52   TMP_MARK;
53   x_ptr = x->_mp_d;
54   MPN_SIZEINBASE (str_size, x_ptr, x_size, 10);
55   str_size += 2;
56   str = (unsigned char *) TMP_ALLOC (str_size);
57
58   /* mpn_get_str clobbers its argument */
59   xp = TMP_ALLOC_LIMBS (x_size);
60   MPN_COPY (xp, x_ptr, x_size);
61
62   str_size = mpn_get_str (str, 10, xp, x_size);
63
64   /* mpn_get_str might make a leading zero, skip it.  */
65   str_size -= (*str == 0);
66   str += (*str == 0);
67   ASSERT (*str != 0);
68
69   /* Translate to printable chars.  */
70   for (i = 0; i < str_size; i++)
71     str[i] = "0123456789"[str[i]];
72   str[str_size] = 0;
73
74   str_size = strlen ((char *) str);
75   if (str_size % 10 != 0)
76     {
77       fwrite (str, 1, str_size % 10, stdout);
78       str += str_size % 10;
79       str_size -= str_size % 10;
80       if (str_size != 0)
81         fputc (' ', stdout);
82     }
83   for (i = 0; i < str_size; i += 10)
84     {
85       fwrite (str, 1, 10, stdout);
86       str += 10;
87       if (i + 10 < str_size)
88         fputc (' ', stdout);
89     }
90   fputc ('\n', stdout);
91   TMP_FREE;
92 }