Imported Upstream version 1.22.4
[platform/upstream/groff.git] / src / libs / libgroff / itoa.c
1 /* Copyright (C) 1989-2018 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 #define UINT_DIGITS 20
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 /* Prototypes */
27 char *i_to_a(int);
28 char *ui_to_a(unsigned int);
29
30 char *i_to_a(int i)
31 {
32   /* Room for INT_DIGITS digits, - and '\0' */
33   static char buf[INT_DIGITS + 2];
34   char *p = buf + INT_DIGITS + 1;       /* points to terminating '\0' */
35   if (i >= 0) {
36     do {
37       *--p = '0' + (i % 10);
38       i /= 10;
39     } while (i != 0);
40     return p;
41   }
42   else {                        /* i < 0 */
43     do {
44       *--p = '0' - (i % 10);
45       i /= 10;
46     } while (i != 0);
47     *--p = '-';
48   }
49   return p;
50 }
51
52 char *ui_to_a(unsigned int i)
53 {
54   /* Room for UINT_DIGITS digits and '\0' */
55   static char buf[UINT_DIGITS + 1];
56   char *p = buf + UINT_DIGITS;  /* points to terminating '\0' */
57   do {
58     *--p = '0' + (i % 10);
59     i /= 10;
60   } while (i != 0);
61   return p;
62 }
63
64 #ifdef __cplusplus
65 }
66 #endif