7f39fa0703facd6b63baa045f4e5c52ed5982fa8
[platform/upstream/groff.git] / src / libs / libgroff / iftoa.c
1 /* Copyright (C) 1989-2014  Free Software Foundation, Inc.
2      Written by James Clark (jjc@jclark.com)
3
4 This file is part of groff.
5
6 groff is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 groff is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 #define INT_DIGITS 19           /* enough for 64-bit integer */
20
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24
25 char *if_to_a(int i, int decimal_point)
26 {
27   /* room for a -, INT_DIGITS digits, a decimal point, and a terminating '\0' */
28   static char buf[INT_DIGITS + 3];                      
29   char *p = buf + INT_DIGITS + 2;
30   int point = 0;
31   buf[INT_DIGITS + 2] = '\0';
32   /* assert(decimal_point <= INT_DIGITS); */
33   if (i >= 0) {
34     do {
35       *--p = '0' + (i % 10);
36       i /= 10;
37       if (++point == decimal_point)
38         *--p = '.';
39     } while (i != 0 || point < decimal_point);
40   }
41   else {                        /* i < 0 */
42     do {
43       *--p = '0' - (i % 10);
44       i /= 10;
45       if (++point == decimal_point)
46         *--p = '.';
47     } while (i != 0 || point < decimal_point);
48     *--p = '-';
49   }
50   if (decimal_point > 0) {
51     char *q;
52     /* there must be a dot, so this will terminate */
53     for (q = buf + INT_DIGITS + 2; q[-1] == '0'; --q)
54       ;
55     if (q[-1] == '.') {
56       if (q - 1 == p) {
57         q[-1] = '0';
58         q[0] = '\0';
59       }
60       else
61         q[-1] = '\0';
62     }
63     else
64       *q = '\0';
65   }
66   return p;
67 }
68
69 #ifdef __cplusplus
70 }
71 #endif